Class DefaultReleasability
java.lang.Object
org.apache.sis.metadata.AbstractMetadata
org.apache.sis.metadata.ModifiableMetadata
org.apache.sis.metadata.iso.ISOMetadata
org.apache.sis.metadata.iso.constraint.DefaultReleasability
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
@UML(identifier="MD_Releasability",
specification=ISO_19115)
public class DefaultReleasability
extends ISOMetadata
Information about resource release constraints.
Note on International Standard versions
This class is derived from a new type defined in the ISO 19115 international standard published in 2014, while GeoAPI 3.0 is based on the version published in 2003. Consequently this implementation class does not yet implement a GeoAPI interface, but is expected to do so after the next GeoAPI releases. When the interface will become available, all references to this implementation class in Apache SIS will be replaced be references to the
This class is derived from a new type defined in the ISO 19115 international standard published in 2014, while GeoAPI 3.0 is based on the version published in 2003. Consequently this implementation class does not yet implement a GeoAPI interface, but is expected to do so after the next GeoAPI releases. When the interface will become available, all references to this implementation class in Apache SIS will be replaced be references to the
Releasability
interface.
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.5
- Version:
- 1.1
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.sis.metadata.ModifiableMetadata
ModifiableMetadata.State
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate Collection
<DefaultResponsibility> Party to which the release statement applies.private Collection
<org.opengis.metadata.constraint.Restriction> Component in determining releasability.private static final long
Serial number for inter-operability with different versions.private org.opengis.util.InternationalString
Release statement.Fields inherited from class org.apache.sis.metadata.iso.ISOMetadata
identifiers
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an initially empty releasability.Constructs a new instance initialized with the values from the specified metadata object. -
Method Summary
Modifier and TypeMethodDescriptionReturns the parties to which the release statement applies.void
getAddressees
(Collection<? extends DefaultResponsibility> newValues) Deprecated.Collection
<org.opengis.metadata.constraint.Restriction> Components in determining releasability.void
getDisseminationConstraints
(Collection<? extends org.opengis.metadata.constraint.Restriction> newValues) Deprecated.org.opengis.util.InternationalString
Returns the release statement.void
setAddressees
(Collection<? extends DefaultResponsibility> newValues) Sets the parties to which the release statement applies.void
setDisseminationConstraints
(Collection<? extends org.opengis.metadata.constraint.Restriction> newValues) Sets the components in determining releasability.void
setStatement
(org.opengis.util.InternationalString newValue) Sets the release statement.Methods inherited from class org.apache.sis.metadata.iso.ISOMetadata
getIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionTo
Methods inherited from class org.apache.sis.metadata.ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSet
Methods 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:
-
addressees
Party to which the release statement applies. -
statement
private org.opengis.util.InternationalString statementRelease statement. -
disseminationConstraints
Component in determining releasability.
-
-
Constructor Details
-
DefaultReleasability
public DefaultReleasability()Creates an initially empty releasability. -
DefaultReleasability
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.
-
-
Method Details
-
getAddressees
@UML(identifier="addressee", obligation=OPTIONAL, specification=ISO_19115) public Collection<DefaultResponsibility> getAddressees()Returns the parties to which the release statement applies.Upcoming API change — generalization
The element type will be changed to theResponsibility
interface when GeoAPI will provide it (tentatively in GeoAPI 3.1).- Returns:
- parties to which the release statement applies.
-
setAddressees
Sets the parties to which the release statement applies.Upcoming API change — generalization
The element type will be changed to theResponsibility
interface when GeoAPI will provide it (tentatively in GeoAPI 3.1).- Parameters:
newValues
- the new parties.
-
getAddressees
Deprecated.RenamedsetAddressees(Collection)
.Sets the parties to which the release statement applies.- Parameters:
newValues
- the new parties.
-
getStatement
@UML(identifier="statement", obligation=OPTIONAL, specification=ISO_19115) public org.opengis.util.InternationalString getStatement()Returns the release statement.- Returns:
- release statement, or
null
if none.
-
setStatement
public void setStatement(org.opengis.util.InternationalString newValue) Sets the release statement.- Parameters:
newValue
- the new release statement.
-
getDisseminationConstraints
@UML(identifier="disseminationConstraints", obligation=OPTIONAL, specification=ISO_19115) public Collection<org.opengis.metadata.constraint.Restriction> getDisseminationConstraints()Components in determining releasability.- Returns:
- components in determining releasability.
-
setDisseminationConstraints
public void setDisseminationConstraints(Collection<? extends org.opengis.metadata.constraint.Restriction> newValues) Sets the components in determining releasability.- Parameters:
newValues
- the new components.
-
getDisseminationConstraints
@Deprecated public void getDisseminationConstraints(Collection<? extends org.opengis.metadata.constraint.Restriction> newValues) Deprecated.Sets the components in determining releasability.- Parameters:
newValues
- the new components.
-
setAddressees(Collection)
.