Class DefaultOperation
java.lang.Object
org.apache.sis.metadata.AbstractMetadata
org.apache.sis.metadata.ModifiableMetadata
org.apache.sis.metadata.iso.ISOMetadata
org.apache.sis.metadata.iso.acquisition.DefaultOperation
- All Implemented Interfaces:
Serializable,Emptiable,LenientComparable,IdentifiedObject,org.opengis.metadata.acquisition.Operation
public class DefaultOperation
extends ISOMetadata
implements org.opengis.metadata.acquisition.Operation
Designations for the operation used to acquire the dataset.
The following properties are mandatory in a well-formed metadata according ISO 19115:
MI_Operation
├─identifier………………… Unique identification of the operation.
│ └─code……………………… Alphanumeric value identifying an instance in the namespace.
├─status…………………………… Status of the data acquisition.
└─parentOperation…… Heritage of the operation.Limitations
- Instances of this class are not synchronized for multi-threading. Synchronization, if needed, is caller's responsibility.
- Serialized objects of this class are not guaranteed to be compatible with future Apache SIS releases.
Serialization support is appropriate for short term storage or RMI between applications running the
same version of Apache SIS. For long term storage, use
XMLinstead.
- Since:
- 0.3
- Version:
- 1.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.sis.metadata.ModifiableMetadata
ModifiableMetadata.State -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate Collection<org.opengis.metadata.acquisition.Operation>Sub-missions that make up part of a larger mission.private org.opengis.metadata.citation.CitationIdentification of the mission.private org.opengis.util.InternationalStringDescription of the mission on which the platform observations are made and the objectives of that mission.private Collection<org.opengis.metadata.acquisition.Objective>Object(s) or area(s) of interest to be sensed.private org.opengis.metadata.acquisition.OperationHeritage of the operation.private org.opengis.metadata.acquisition.PlanPlan satisfied by the operation.private Collection<org.opengis.metadata.acquisition.Platform>Platform (or platforms) used in the operation.private static final longSerial number for inter-operability with different versions.private Collection<org.opengis.metadata.acquisition.Event>Record of an event occurring during an operation.private org.opengis.metadata.identification.ProgressStatus of the data acquisition.private org.opengis.metadata.acquisition.OperationTypeCollection technique for the operation.Fields inherited from class org.apache.sis.metadata.iso.ISOMetadata
identifiers -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an initially empty operation.DefaultOperation(org.opengis.metadata.acquisition.Operation object) Constructs a new instance initialized with the values from the specified metadata object. -
Method Summary
Modifier and TypeMethodDescriptionstatic DefaultOperationcastOrCopy(org.opengis.metadata.acquisition.Operation object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Collection<org.opengis.metadata.acquisition.Operation>Returns the sub-missions that make up part of a larger mission.org.opengis.metadata.citation.CitationReturns the identification of the mission.org.opengis.util.InternationalStringReturns the description of the mission on which the platform observations are made and the objectives of that mission.org.opengis.metadata.IdentifierReturns the unique identification of the operation.Collection<org.opengis.metadata.acquisition.Objective>Returns object(s) or area(s) of interest to be sensed.org.opengis.metadata.acquisition.OperationReturns the heritage of the operation.org.opengis.metadata.acquisition.PlangetPlan()Returns the plan satisfied by the operation.Collection<org.opengis.metadata.acquisition.Platform>Returns the platform (or platforms) used in the operation.Collection<org.opengis.metadata.acquisition.Event>Returns the record of an event occurring during an operation.org.opengis.metadata.identification.ProgressReturns the status of the data acquisition.org.opengis.metadata.acquisition.OperationTypegetType()Returns the collection technique for the operation.voidsetChildOperations(Collection<? extends org.opengis.metadata.acquisition.Operation> newValues) Sets the sub-missions that make up part of a larger mission.voidsetCitation(org.opengis.metadata.citation.Citation newValue) Sets the identification of the mission.voidsetDescription(org.opengis.util.InternationalString newValue) Sets the description of the mission on which the platform observations are made and the objectives of that mission.voidsetIdentifier(org.opengis.metadata.Identifier newValue) Sets the unique identification of the operation.voidsetObjectives(Collection<? extends org.opengis.metadata.acquisition.Objective> newValues) Sets Object(s) or area(s) of interest to be sensed.voidsetParentOperation(org.opengis.metadata.acquisition.Operation newValue) Sets the heritage of the operation.voidsetPlan(org.opengis.metadata.acquisition.Plan newValue) Sets the plan satisfied by the operation.voidsetPlatforms(Collection<? extends org.opengis.metadata.acquisition.Platform> newValues) Sets the platform (or platforms) used in the operation.voidsetSignificantEvents(Collection<? extends org.opengis.metadata.acquisition.Event> newValues) Sets the record of an event occurring during an operation.voidsetStatus(org.opengis.metadata.identification.Progress newValue) Sets the status of the data acquisition.voidsetType(org.opengis.metadata.acquisition.OperationType newValue) Sets the collection technique for the operation.Methods inherited from class org.apache.sis.metadata.iso.ISOMetadata
getIdentifierMap, getIdentifiers, getStandard, transitionToMethods inherited from class org.apache.sis.metadata.ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSetMethods inherited from class org.apache.sis.metadata.AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for inter-operability with different versions.- See Also:
-
description
private org.opengis.util.InternationalString descriptionDescription of the mission on which the platform observations are made and the objectives of that mission. -
citation
private org.opengis.metadata.citation.Citation citationIdentification of the mission. -
status
private org.opengis.metadata.identification.Progress statusStatus of the data acquisition. -
type
private org.opengis.metadata.acquisition.OperationType typeCollection technique for the operation. -
childOperations
Sub-missions that make up part of a larger mission. -
objectives
Object(s) or area(s) of interest to be sensed. -
parentOperation
private org.opengis.metadata.acquisition.Operation parentOperationHeritage of the operation. -
plan
private org.opengis.metadata.acquisition.Plan planPlan satisfied by the operation. -
platforms
Platform (or platforms) used in the operation. -
significantEvents
Record of an event occurring during an operation.
-
-
Constructor Details
-
DefaultOperation
public DefaultOperation()Constructs an initially empty operation. -
DefaultOperation
public DefaultOperation(org.opengis.metadata.acquisition.Operation object) Constructs a new instance initialized with the values from the specified metadata object. This is a shallow copy constructor, because the other metadata contained in the given object are not recursively copied.- Parameters:
object- the metadata to copy values from, ornullif none.- See Also:
-
-
Method Details
-
castOrCopy
Returns a SIS metadata implementation with the values of the given arbitrary implementation. This method performs the first applicable action in the following choices:- If the given object is
null, then this method returnsnull. - Otherwise if the given object is already an instance of
DefaultOperation, then it is returned unchanged. - Otherwise a new
DefaultOperationinstance is created using the copy constructor and returned. Note that this is a shallow copy operation, because the other metadata contained in the given object are not recursively copied.
- Parameters:
object- the object to get as a SIS implementation, ornullif none.- Returns:
- a SIS implementation containing the values of the given object (may be the
given object itself), or
nullif the argument was null.
- If the given object is
-
getDescription
public org.opengis.util.InternationalString getDescription()Returns the description of the mission on which the platform observations are made and the objectives of that mission.nullif unspecified.- Specified by:
getDescriptionin interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- description of the mission, or
null.
-
setDescription
public void setDescription(org.opengis.util.InternationalString newValue) Sets the description of the mission on which the platform observations are made and the objectives of that mission.- Parameters:
newValue- the new description value.
-
getCitation
public org.opengis.metadata.citation.Citation getCitation()Returns the identification of the mission.nullif unspecified.- Specified by:
getCitationin interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- identification of the mission, or
null.
-
setCitation
public void setCitation(org.opengis.metadata.citation.Citation newValue) Sets the identification of the mission.- Parameters:
newValue- the new citation value.
-
getIdentifier
public org.opengis.metadata.Identifier getIdentifier()Returns the unique identification of the operation.- Specified by:
getIdentifierin interfaceorg.opengis.metadata.acquisition.Operation- Overrides:
getIdentifierin classISOMetadata- Returns:
- unique identification of the operation, or
null.
-
setIdentifier
public void setIdentifier(org.opengis.metadata.Identifier newValue) Sets the unique identification of the operation.- Overrides:
setIdentifierin classISOMetadata- Parameters:
newValue- the new identifier value.
-
getStatus
public org.opengis.metadata.identification.Progress getStatus()Returns the status of the data acquisition.- Specified by:
getStatusin interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- status of the data acquisition, or
null.
-
setStatus
public void setStatus(org.opengis.metadata.identification.Progress newValue) Sets the status of the data acquisition.- Parameters:
newValue- the new status value.
-
getType
public org.opengis.metadata.acquisition.OperationType getType()Returns the collection technique for the operation.- Specified by:
getTypein interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- collection technique for the operation, or
null.
-
setType
public void setType(org.opengis.metadata.acquisition.OperationType newValue) Sets the collection technique for the operation.- Parameters:
newValue- the new type value.
-
getChildOperations
Returns the sub-missions that make up part of a larger mission.- Specified by:
getChildOperationsin interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- sub-missions.
-
setChildOperations
public void setChildOperations(Collection<? extends org.opengis.metadata.acquisition.Operation> newValues) Sets the sub-missions that make up part of a larger mission.- Parameters:
newValues- the new child operations values.
-
getObjectives
Returns object(s) or area(s) of interest to be sensed.- Specified by:
getObjectivesin interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- object(s) or area(s) of interest.
-
setObjectives
public void setObjectives(Collection<? extends org.opengis.metadata.acquisition.Objective> newValues) Sets Object(s) or area(s) of interest to be sensed.- Parameters:
newValues- the new objectives values.
-
getParentOperation
public org.opengis.metadata.acquisition.Operation getParentOperation()Returns the heritage of the operation.- Specified by:
getParentOperationin interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- heritage of the operation, or
null.
-
setParentOperation
public void setParentOperation(org.opengis.metadata.acquisition.Operation newValue) Sets the heritage of the operation.- Parameters:
newValue- the new parent operation value.
-
getPlan
public org.opengis.metadata.acquisition.Plan getPlan()Returns the plan satisfied by the operation.- Specified by:
getPlanin interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- plan satisfied by the operation, or
null.
-
setPlan
public void setPlan(org.opengis.metadata.acquisition.Plan newValue) Sets the plan satisfied by the operation.- Parameters:
newValue- the new plan value.
-
getPlatforms
Returns the platform (or platforms) used in the operation.- Specified by:
getPlatformsin interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- platforms used in the operation.
-
setPlatforms
Sets the platform (or platforms) used in the operation.- Parameters:
newValues- the new platforms values.
-
getSignificantEvents
Returns the record of an event occurring during an operation.- Specified by:
getSignificantEventsin interfaceorg.opengis.metadata.acquisition.Operation- Returns:
- record of an event occurring during an operation.
-
setSignificantEvents
public void setSignificantEvents(Collection<? extends org.opengis.metadata.acquisition.Event> newValues) Sets the record of an event occurring during an operation.- Parameters:
newValues- the new significant events value.
-