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:
  • Constructor Details

    • MetadataObjectId

      public MetadataObjectId()
  • Method Details

    • getPackagePart

      public abstract String 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

      public abstract String 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

      public abstract MetadataObjectId.MetadataObjectType getType()
      The type of this metadata object identifier.
      Returns:
      the type of this instance.
    • toString

      public abstract String toString()
      A string representation of this instance.
      Overrides:
      toString in class Object
      Returns:
      the string representation of this instance.
    • toPermissionString

      public abstract String toPermissionString()
      A string representation of this suitable for use in permission grants.
      Specified by:
      toPermissionString in interface oracle.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 a MetadataObjectId from the given individual parts. This method can be useful in submitting a request for specific known metadata objects, where querying such objects via MetadataService 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.