Package oracle.as.scheduler
Class MetadataObjectId
java.lang.Object
oracle.as.scheduler.MetadataObjectId
- All Implemented Interfaces:
Serializable
,oracle.as.scheduler.security.MetadataPermissionId
public abstract class MetadataObjectId
extends Object
implements Serializable, oracle.as.scheduler.security.MetadataPermissionId
Identifier for metadata objects. Instances of the class uniquely
identify metadata objects in the metadata repository.
This unique identifier contains the fully qualified name for the a given metadata object. Methods declared in this class allow access to individual parts within the fully qualified name.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Enumeration for all the supported metadata object types. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic MetadataObjectId
createMetadataObjectId
(MetadataObjectId.MetadataObjectType type, String packageName, String name) Creates an instance of aMetadataObjectId
from the given individual parts.abstract String
The name of this metadata object identifier.abstract String
The package (namespace) for this metadata object identifier.abstract MetadataObjectId.MetadataObjectType
getType()
The type of this metadata object identifier.abstract String
A string representation of this suitable for use in permission grants.abstract String
toString()
A string representation of this instance.
-
Constructor Details
-
MetadataObjectId
public MetadataObjectId()
-
-
Method Details
-
getPackagePart
The package (namespace) for this metadata object identifier.A metadata object is created and resides in the given package or namespace within the metadata repository.
- Returns:
- the package (namespace) of this metadata object. This
will be
null
is a package was not specified.
-
getNamePart
The name of this metadata object identifier.This is the name with which the metadata object was created and persisted in the repository using the metadata service.
- Returns:
- the name portion of the id. This will never be
null
.
-
getType
The type of this metadata object identifier.- Returns:
- the type of this instance.
-
toString
A string representation of this instance. -
toPermissionString
A string representation of this suitable for use in permission grants.- Specified by:
toPermissionString
in interfaceoracle.as.scheduler.security.MetadataPermissionId
- Returns:
- the permission string representation of this instance.
-
createMetadataObjectId
public static MetadataObjectId createMetadataObjectId(MetadataObjectId.MetadataObjectType type, String packageName, String name) Creates an instance of aMetadataObjectId
from the given individual parts. This method can be useful in submitting a request for specific known metadata objects, where querying such objects viaMetadataService
is not required.This method simply assembles an identifier from individual parts. It does not guarantee that the
MetadataObjectId
created represents a real metadata object in the repository.- Parameters:
type
- the type of MetadataObjectId to be created.packageName
- the package of the metadata object for which the id is being created. The package should follow the "/pkg1/pkg2/..." format.name
- the name of metadata object for this id is being created.- Returns:
- a
MetadataObjectId
created from given individual parts.
-