Class 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 XML instead.
Since:
0.3
Version:
1.0
Author:
Cédric Briançon (Geomatys), Martin Desruisseaux (Geomatys)
See Also:
  • 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, or null if none.
      See Also:
  • Method Details

    • castOrCopy

      public static DefaultOperation castOrCopy(org.opengis.metadata.acquisition.Operation object)
      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 returns null.
      • 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, or null 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.
    • 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. null if unspecified.
      Specified by:
      getDescription in interface org.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. null if unspecified.
      Specified by:
      getCitation in interface org.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:
      getIdentifier in interface org.opengis.metadata.acquisition.Operation
      Overrides:
      getIdentifier in class ISOMetadata
      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:
      setIdentifier in class ISOMetadata
      Parameters:
      newValue - the new identifier value.
    • getStatus

      public org.opengis.metadata.identification.Progress getStatus()
      Returns the status of the data acquisition.
      Specified by:
      getStatus in interface org.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:
      getType in interface org.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

      public Collection<org.opengis.metadata.acquisition.Operation> getChildOperations()
      Returns the sub-missions that make up part of a larger mission.
      Specified by:
      getChildOperations in interface org.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

      public Collection<org.opengis.metadata.acquisition.Objective> getObjectives()
      Returns object(s) or area(s) of interest to be sensed.
      Specified by:
      getObjectives in interface org.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:
      getParentOperation in interface org.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:
      getPlan in interface org.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

      public Collection<org.opengis.metadata.acquisition.Platform> getPlatforms()
      Returns the platform (or platforms) used in the operation.
      Specified by:
      getPlatforms in interface org.opengis.metadata.acquisition.Operation
      Returns:
      platforms used in the operation.
    • setPlatforms

      public void setPlatforms(Collection<? extends org.opengis.metadata.acquisition.Platform> newValues)
      Sets the platform (or platforms) used in the operation.
      Parameters:
      newValues - the new platforms values.
    • getSignificantEvents

      public Collection<org.opengis.metadata.acquisition.Event> getSignificantEvents()
      Returns the record of an event occurring during an operation.
      Specified by:
      getSignificantEvents in interface org.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.