Package com.bea.wli.config
Class Ref
java.lang.Object
com.bea.wli.config.Ref
- All Implemented Interfaces:
Serializable
,Comparable
A Ref uniquely represents a resource, project or folder that is managed by the
Configuration Framework. A Ref object has two components: A typeId that indicates whether
it is a project, folder, or a resource, and an array of names of non-zero length. For a
resource the array of names start with the project name, followed by folder names,
and end with the resource name. For a project, the Ref object simply contains one name
component, that is, the project name. A Ref object for a folder contains the project name
followed by the names of the folders which it is nested under.
A special Ref DOMAIN
refers to the whole domain.
Note: this class has a natural ordering that is inconsistent with equals.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Ref
Default project referencestatic final Ref
Reference to the domainstatic final String
static final String
Local name for folderdatastatic final String
static final String
Type Id for location metadatastatic final int
static final String
Local name for project datastatic final String
static final char
Character that separates hierarchical namesstatic final String
Regular expression representation of the separateor char for pattern matching purposes.static final long
static final Ref
Internal project that always exists -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
static void
int
boolean
static Ref
Returns the (only) reference to the config fwk domainReturns the full name of the object.Returns the local name (last name) for the given refstatic String
getLocalNamePart
(String fullName) Returns the local name part of the full name.String[]
getNames()
Returns the hierarchical name for the object referenced.static String[]
converts a fullname into its components by splitting it at the separator characterSEPARATOR_CHAR
static String
getParentNamePart
(String fullName) Returns the parent name part of the full name.Returns a reference to the parent.Returns the project If this is a resource reference, project reference of a folder reference.Returns the project name If this is a resource reference, project reference of a folder reference.Returns the type of the referenceint
hashCode()
boolean
isDescendantOf
(Ref ancestor) Returns true if this reference is a descendent (child, grandchild etc...) of the given referenceboolean
Returns true if this is the domain referenceboolean
Returns true if this is a folder referenceboolean
Returns true if this is a reference to the locationData resourceboolean
Returns true if this is a project referenceboolean
REturns true if this is a resource referencestatic Ref
makeFolderRef
(Ref parent, String folderName) Constructs a reference to a folderstatic Ref
makeLocationDataRef
(Ref location) Creates a reference to the metadata that is kept for the given location (folder or project).static Ref
makeLocationRef
(String location) Deprecated.since 2.6static Ref
makeProjectRef
(String projectName) Constructs a reference to projectstatic Ref
Constructs a reference to an arbitrary object other than the domain and that is hierarchical.static Ref
Constructs a reference to an arbitrary object other than the domain.static Ref
makeResourceRef
(String resourceType, Ref projectOrFolderRef, String resourceName) Convenience constructor for creating an arbitrary resource referencestatic Ref
makeSimpleTypeRef
(String typeId, String name) Maps a reference to another reference so that a portion of its prefix location is mapped to a target location.narrowRefs
(Set<Ref> initialSet, Set<Ref> filter) Narrows the initial set so that only those that are specified in the filter remain.static Ref
parseGlobalName
(String globalName) static Ref
parseGlobalNameOld
(String globalName) static String
relativize
(Ref source, Ref dest) creates a relative path for the given destination resource ref against the given base resource ref.static void
removeMoreSpecific
(Set<Ref> set) Remove a ref R1 from set if there exists another ref R2 in the set such that R1 is under R2.static void
This method returns sorted Ref listtoString()
static boolean
validateProjectOrFolderPart
(StringBuilder resultMsg, String name, Locale locale) Utility method for validating a folder or project name.static boolean
validateResourceLocalNamePart
(StringBuilder resultMsg, String name, Locale locale) Utility method for validating the local name of a resource.
-
Field Details
-
serialVersionUID
public static final long serialVersionUID- See Also:
-
MAX_FOLDER_OR_PROJECT_PART_LENGTH
public static final int MAX_FOLDER_OR_PROJECT_PART_LENGTH- See Also:
-
DOMAIN_REF
- See Also:
-
PROJECT_REF
- See Also:
-
FOLDER_REF
- See Also:
-
LOCATION_DATA_TYPE
Type Id for location metadata- See Also:
-
DOMAIN
Reference to the domain -
DEFAULT_PROJECT_REF
Default project reference -
STATIC_PROJECT_REF
Internal project that always exists -
PROJECT_DATA_LOCAL_NAME
Local name for project data- See Also:
-
FOLDER_DATA_LOCAL_NAME
Local name for folderdata- See Also:
-
SEPARATOR_CHAR
public static final char SEPARATOR_CHARCharacter that separates hierarchical names- See Also:
-
SEPARATOR_CHAR_PATTERN
Regular expression representation of the separateor char for pattern matching purposes. This string is the same as SEPARATOR_CHAR except that if the sep char is a special char it contains escape prefix "\"- See Also:
-
-
Constructor Details
-
Ref
Constructor for creating a reference to an object under a particular parent- Parameters:
typeId
- The type of the reference that will be createdparent
- the parent. If the typeId is project the parent must be the domain reference. If the typeId is folder the parent must be a project or another folder. If the typeId indicates a resource the parent must be a project or a folder.name
- non-qualified name of the object that will be created. The full name of the created object will be computed by appending this name to the full name of the parent.
-
Ref
Constructor for creating an arbitrary reference.- Parameters:
typeId
- The type of the reference that will be creatednames
- list of name segments composing the fullname, starting with the project name.
-
-
Method Details
-
getTypeId
Returns the type of the reference -
isDomainRef
public boolean isDomainRef()Returns true if this is the domain reference -
isProjectRef
public boolean isProjectRef()Returns true if this is a project reference -
isFolderRef
public boolean isFolderRef()Returns true if this is a folder reference -
isResourceRef
public boolean isResourceRef()REturns true if this is a resource reference -
isLocationDataRef
public boolean isLocationDataRef()Returns true if this is a reference to the locationData resource -
getNames
Returns the hierarchical name for the object referenced. -
getFullName
Returns the full name of the object. This is a dot separated sequence of reference type followed by names . -
getLocalName
Returns the local name (last name) for the given ref -
getProjectName
Returns the project name If this is a resource reference, project reference of a folder reference. Otherwise throwsIllegalStateException
- Throws:
IllegalStateException
- if this is not a project, folder or resource reference
-
getProject
Returns the project If this is a resource reference, project reference of a folder reference. Otherwise throwsIllegalStateException
- Throws:
IllegalStateException
- if this is not a project, folder or resource reference
-
getParentRef
Returns a reference to the parent. Returns null if this is domain ref. Returns domain ref, if this is a project reference. Returns the parent (project or folder) reference if this is a folder or a resource. -
isDescendantOf
Returns true if this reference is a descendent (child, grandchild etc...) of the given reference -
getGlobalName
-
parseGlobalNameOld
-
parseGlobalName
-
toString
-
equals
-
hashCode
public int hashCode() -
compareTo
- Specified by:
compareTo
in interfaceComparable
-
readResolve
-
map
Maps a reference to another reference so that a portion of its prefix location is mapped to a target location. For example, if the reference is A/B/C/D/myResource, sourceLocation = A/B, and target location = X/Y/Z then the mapping result would be X/Y/Z/C/D/myResource. If this reference is equal to the source location, the method simply returns the targetLocation.- Parameters:
sourceLocation
- the prefix location to be changed.targetLocation
- the new value for the prefix location.- Returns:
- Throws:
IllegalArgumentException
- if this reference is not under the source location.
-
makeLocationRef
Deprecated.since 2.6Factory method to create parent ref for the given location. For Eg: if location is project1/folder1/folder2 it creates Ref object for folder2.
- Parameters:
location
-- Returns:
-
makeLocationDataRef
Creates a reference to the metadata that is kept for the given location (folder or project).- Parameters:
location
- the folder/project for which the location data reference will be computed- Returns:
- reference to the resource that contains metadata about the given location
-
makeProjectRef
Constructs a reference to project- Parameters:
projectName
- name of the project- Returns:
- a reference to the project whose name is given.
-
makeFolderRef
Constructs a reference to a folder- Parameters:
parent
- the parent. This can be a folder or a project.folderName
- name of the folder- Returns:
- a reference to a folder
-
makeRef
Constructs a reference to an arbitrary object other than the domain and that is hierarchical.- Parameters:
typeId
- Type of the reference to constructparent
- the parent. This can be a folder or a project.localname
- local name for the reference
-
makeRef
Constructs a reference to an arbitrary object other than the domain.- Parameters:
typeId
- Type of the reference to constructnames
- array of names that describe the path to the object being referenced.
-
makeSimpleTypeRef
-
makeResourceRef
Convenience constructor for creating an arbitrary resource reference- Parameters:
resourceType
- type of the resourceprojectOrFolderRef
- parent folder or projectresourceName
- name of the resource- Returns:
-
getDomainRef
Returns the (only) reference to the config fwk domain -
getNames
converts a fullname into its components by splitting it at the separator characterSEPARATOR_CHAR
- Parameters:
fullName
- the full (hierarchical) name to the instance
-
validateProjectOrFolderPart
public static boolean validateProjectOrFolderPart(StringBuilder resultMsg, String name, Locale locale) Utility method for validating a folder or project name. If the name argument is valid a true value is returned and resultMsg is not affected. If the name argument is not valid, an error msg is appended to the resultMsg argument, and a false value is returned.- Parameters:
resultMsg
- Error message is appended to this builder if the name is invalid.name
- the local name of the project or folder (relative to the project), e.g., myProject, or folderA- Returns:
-
validateResourceLocalNamePart
public static boolean validateResourceLocalNamePart(StringBuilder resultMsg, String name, Locale locale) Utility method for validating the local name of a resource. If the name argument is valid a true value is returned and resultMsg is not affected. If the name argument is not valid, an error msg is appended to the resultMsg argument, and a false value is returned.- Parameters:
resultMsg
- Error message is appended to this builder if the name is invalid.name
- the local name of the resource (relative to its location), e.g., myResource, myWSDL- Returns:
-
_assertValidProjectOrFolderPart
- Throws:
IllegalArgumentException
-
_assertValidLocalNamePart
- Throws:
IllegalArgumentException
-
getLocalNamePart
Returns the local name part of the full name. Local name is the last component in a full path. -
getParentNamePart
Returns the parent name part of the full name. The parent name is the project or containing folder in the full path. -
sort
This method returns sorted Ref list
-
narrowRefs
Narrows the initial set so that only those that are specified in the filter remain. This operation is different than the behavior implemented by theSet.retainAll(java.util.Collection<?>)
, and is not equal to initialSet.retainAll(filter). A reference in the initial set is retained if it exists in the filter set, or if any of its parent locations (folders, and project that it belongs to) exists in the filter. -
removeMoreSpecific
Remove a ref R1 from set if there exists another ref R2 in the set such that R1 is under R2. -
relativize
creates a relative path for the given destination resource ref against the given base resource ref.
-