Class PropertyName
- java.lang.Object
-
- org.opencastproject.assetmanager.api.PropertyName
-
- All Implemented Interfaces:
Serializable
@Immutable @ParametersAreNonnullByDefault public final class PropertyName extends Object implements Serializable
A full qualified property name.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyName(String namespace, String name)Create a new full qualified property name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object that)StringgetName()Return the namespace local name.StringgetNamespace()Return the namespace.inthashCode()static PropertyNamemk(String namespace, String name)Create a new full qualified property name.StringtoString()
-
-
-
Method Detail
-
mk
public static PropertyName mk(String namespace, String name)
Create a new full qualified property name.
-
getNamespace
public String getNamespace()
Return the namespace.
-
getName
public String getName()
Return the namespace local name.
-
-