Module org.apache.sis.metadata
Class DefaultOperation
Object
AbstractMetadata
ModifiableMetadata
ISOMetadata
DefaultOperation
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
,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
XML
instead.
- Since:
- 0.3
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class ModifiableMetadata
ModifiableMetadata.State
-
Field Summary
Fields inherited from class ISOMetadata
identifiers
-
Constructor Summary
ConstructorDescriptionConstructs an initially empty operation.DefaultOperation
(Operation object) Constructs a new instance initialized with the values from the specified metadata object. -
Method Summary
Modifier and TypeMethodDescriptionstatic DefaultOperation
castOrCopy
(Operation object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Returns the sub-missions that make up part of a larger mission.Returns the identification of the mission.Returns the description of the mission on which the platform observations are made and the objectives of that mission.Returns the unique identification of the operation.Returns object(s) or area(s) of interest to be sensed.Returns the heritage of the operation.getPlan()
Returns the plan satisfied by the operation.Returns the platform (or platforms) used in the operation.Returns the record of an event occurring during an operation.Returns the status of the data acquisition.getType()
Returns the collection technique for the operation.void
setChildOperations
(Collection<? extends Operation> newValues) Sets the sub-missions that make up part of a larger mission.void
setCitation
(Citation newValue) Sets the identification of the mission.void
setDescription
(InternationalString newValue) Sets the description of the mission on which the platform observations are made and the objectives of that mission.void
setIdentifier
(Identifier newValue) Sets the unique identification of the operation.void
setObjectives
(Collection<? extends Objective> newValues) Sets Object(s) or area(s) of interest to be sensed.void
setParentOperation
(Operation newValue) Sets the heritage of the operation.void
Sets the plan satisfied by the operation.void
setPlatforms
(Collection<? extends Platform> newValues) Sets the platform (or platforms) used in the operation.void
setSignificantEvents
(Collection<? extends Event> newValues) Sets the record of an event occurring during an operation.void
setStatus
(Progress newValue) Sets the status of the data acquisition.void
setType
(OperationType newValue) Sets the collection technique for the operation.Methods inherited from class ISOMetadata
getIdentifierMap, getIdentifiers, getStandard, transitionTo
Methods inherited from class ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSet
Methods inherited from class AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
Constructor Details
-
DefaultOperation
public DefaultOperation()Constructs an initially empty operation. -
DefaultOperation
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, ornull
if 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
DefaultOperation
instance 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, ornull
if none.- Returns:
- a SIS implementation containing the values of the given object (may be the
given object itself), or
null
if the argument was null.
- If the given object is
-
getDescription
Returns the description of the mission on which the platform observations are made and the objectives of that mission.null
if unspecified.- Specified by:
getDescription
in interfaceOperation
- Returns:
- description of the mission, or
null
.
-
setDescription
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
Returns the identification of the mission.null
if unspecified.- Specified by:
getCitation
in interfaceOperation
- Returns:
- identification of the mission, or
null
.
-
setCitation
Sets the identification of the mission.- Parameters:
newValue
- the new citation value.
-
getIdentifier
Returns the unique identification of the operation.- Specified by:
getIdentifier
in interfaceOperation
- Overrides:
getIdentifier
in classISOMetadata
- Returns:
- unique identification of the operation, or
null
.
-
setIdentifier
Sets the unique identification of the operation.- Overrides:
setIdentifier
in classISOMetadata
- Parameters:
newValue
- the new identifier value.
-
getStatus
Returns the status of the data acquisition.- Specified by:
getStatus
in interfaceOperation
- Returns:
- status of the data acquisition, or
null
.
-
setStatus
Sets the status of the data acquisition.- Parameters:
newValue
- the new status value.
-
getType
Returns the collection technique for the operation. -
setType
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:
getChildOperations
in interfaceOperation
- Returns:
- sub-missions.
-
setChildOperations
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:
getObjectives
in interfaceOperation
- Returns:
- object(s) or area(s) of interest.
-
setObjectives
Sets Object(s) or area(s) of interest to be sensed.- Parameters:
newValues
- the new objectives values.
-
getParentOperation
Returns the heritage of the operation.- Specified by:
getParentOperation
in interfaceOperation
- Returns:
- heritage of the operation, or
null
.
-
setParentOperation
Sets the heritage of the operation.- Parameters:
newValue
- the new parent operation value.
-
getPlan
Returns the plan satisfied by the operation. -
setPlan
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:
getPlatforms
in interfaceOperation
- 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:
getSignificantEvents
in interfaceOperation
- Returns:
- record of an event occurring during an operation.
-
setSignificantEvents
Sets the record of an event occurring during an operation.- Parameters:
newValues
- the new significant events value.
-