|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.adobe.repository.infomodel.bean.Resource
public class Resource
A Resource
represents any artifact that is managed by
Repository. Each version of the artifact constitutes a resource instance.
Artifact versions that share the same Lid (logical identifier) value
are said to form a logical resource. A resource may have content.
Field Summary | |
---|---|
static int |
ATTRIBUTE_ACL_ID
|
static int |
ATTRIBUTE_APPSTORE_VERSION
|
static int |
ATTRIBUTE_CONTENT_IMPL_OID
|
static int |
ATTRIBUTE_CREATE_TIME
|
static int |
ATTRIBUTE_CREATED_BY
|
static int |
ATTRIBUTE_CUSTOM_STATUS
|
static int |
ATTRIBUTE_DEPLOYMENT_STATUS
|
static int |
ATTRIBUTE_DESCRIPTION
|
static int |
ATTRIBUTE_E_TAG
|
static int |
ATTRIBUTE_HEAD
|
static int |
ATTRIBUTE_ID
|
static int |
ATTRIBUTE_LID
|
static int |
ATTRIBUTE_MAJOR_VERSION
|
static int |
ATTRIBUTE_MINOR_VERSION
|
static int |
ATTRIBUTE_NAME
|
static int |
ATTRIBUTE_OBJECT_STATUS
|
static int |
ATTRIBUTE_OBJECT_TYPE
|
static int |
ATTRIBUTE_OWNER_USER_ID
|
static int |
ATTRIBUTE_PATH
|
static int |
ATTRIBUTE_UPDATE_TIME
|
static int |
DEPLOYMENT_STATUS_ACTIVE
Represents a deployment status of active. |
static int |
DEPLOYMENT_STATUS_DEPLOYED
Represents a deployment status of deployed. |
static int |
DEPLOYMENT_STATUS_INACTIVE
Represents a deployment status of inactive. |
static int |
DEPLOYMENT_STATUS_UNSPECIFIED
Represents a resource for which a deployment status has not been specified. |
static short |
DEPTH_ZERO
Depth constant indicating that an operation should apply/return a resource collection only and none of its internal members, or immediate children. |
static int |
OBJECT_STATUS_DEPRECATED
Represents a version of a resource which has been deprecated. |
static int |
OBJECT_STATUS_LATEST
Represents the latest version of a logical resource. |
static int |
OBJECT_STATUS_UNSPECIFIED
Represents a resource for which an object status has not been specified. |
static int |
OBJECT_STATUS_UPDATED
Represents a version of a resource which has been updated. |
static int |
OBJECT_TYPE_RESOURCE
Contains the object type value which represents Resource instances (not subtypes). |
static int |
RELATION_CONTENT
|
static int |
RELATION_LOCKS
|
static int |
RELATION_RESOURCE_PROPERTIES
|
Constructor Summary | |
---|---|
Resource()
The default constructor. |
Method Summary | |
---|---|
void |
addLock(Lock lock)
|
void |
addResourceProperty(ResourceProperty resourceProperty)
Adds a dynamic property to this Resource. |
java.lang.String |
getAclId()
Retrieves the ACL identifier for this resource. |
ResourceContent |
getContent()
Retrieves the file data associated with this resource. |
java.lang.String |
getCreatedBy()
Retrieves the User Manager principal's object identifier for the user who created this resource. |
java.util.Date |
getCreateTime()
Retrieves the time at which this resource was first written to the Repository. |
java.lang.String |
getCustomStatus()
Retrieves this resource's custom status, which is a client-specified status string. |
int |
getDeploymentStatus()
Retrieves this instance's deployment status. |
java.lang.String |
getDescription()
Retrieves this resource's textual description. |
long |
getETag()
Retrieves a timestamp that is updated every time a resource version is modified. |
boolean |
getHead()
Determines whether this resource is the head version of a logical resource. |
Id |
getId()
Retrieves this resource's unique identifier. |
Lid |
getLid()
Retrieves this resource's logical identifier. |
java.util.Collection |
getLocks()
Retrieves the locks that exist on this resource. |
int |
getMajorVersion()
Retrieves this resource instance's major version number. |
int |
getMinorVersion()
Retrieves this resource instance's minor version number. |
java.lang.String |
getName()
Retrieves this resource's name. |
int |
getObjectStatus()
Retrieves the status of this resource version. |
int |
getObjectType()
Retrieves the type of the resource instance. |
java.lang.String |
getOwnerUserId()
Retrieves the user identifier (login identifier) of the user who created this resource. |
java.lang.String |
getPath()
Retrieves the path for this resource. |
java.util.Collection |
getResourceProperties()
Retrieves the dynamic properties defined on this resource. |
java.util.Date |
getUpdateTime()
Retrieves the time at which this resource was last modified. |
boolean |
isProjected(int attribute)
Determines whether the supplied attribute or composed object is projected. |
void |
removeLock(Lock lock)
Removes the specified lock from this resource. |
void |
removeResourceProperty(ResourceProperty resourceProperty)
Removes a dynamic property from this resource. |
void |
setAclId(java.lang.String aclId)
Sets the ACL identifier for this resource. |
void |
setContent(ResourceContent content)
Associates this resource with the supplied ResourceContent object. |
void |
setCreatedBy(java.lang.String createdBy)
Sets the User Manager principal's object identifier for the user who created this resource. |
void |
setCreateTime(java.util.Date createTime)
Sets the time at which this resource was first written to the Repository. |
void |
setCustomStatus(java.lang.String customStatus)
Sets this instance's custom status. |
void |
setDeploymentStatus(int deploymentStatus)
Sets this instance's deployment status. |
void |
setDescription(java.lang.String description)
Sets this resource's description. |
void |
setETag(long eTag)
Sets a timestamp that is updated every time a resource version is modified. |
void |
setHead(boolean head)
Sets whether this resource is the head version of a logical resource. |
void |
setId(Id idString)
Sets this resource's unique identifier. |
void |
setLid(Lid lidString)
Sets this resource's logical identifier, which is unique among distinct logical resources and common across all versions of the same logical resource. |
void |
setMajorVersion(int majorVersion)
Sets the initial major version number to use when a new logical resource is created. |
void |
setMinorVersion(int minorVersion)
Sets the initial minor version number to use when a new logical resource is created. |
void |
setName(java.lang.String name)
Sets this resource's name. |
void |
setObjectStatus(int objectStatus)
Sets this instance's status. |
void |
setObjectType(int objectType)
Sets the type of the resource instance. |
void |
setOwnerUserId(java.lang.String ownerUserId)
Sets the user identifier (login identifier) of the user who created this resource. |
void |
setPath(java.lang.String path)
Sets the path for this resource. |
void |
setRepositoryLoadProfile(RepositoryLoadProfile loadProfile)
Sets the Repository load profile for this resource. |
void |
setUpdateTime(java.util.Date updateTime)
Sets the time at which this resource was last modified. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int OBJECT_STATUS_UNSPECIFIED
public static final int OBJECT_STATUS_LATEST
public static final int OBJECT_STATUS_UPDATED
public static final int OBJECT_STATUS_DEPRECATED
public static final int DEPLOYMENT_STATUS_UNSPECIFIED
public static final int DEPLOYMENT_STATUS_DEPLOYED
public static final int DEPLOYMENT_STATUS_ACTIVE
public static final int DEPLOYMENT_STATUS_INACTIVE
public static final short DEPTH_ZERO
public static final int OBJECT_TYPE_RESOURCE
public static final int ATTRIBUTE_ID
public static final int ATTRIBUTE_OBJECT_TYPE
public static final int ATTRIBUTE_PATH
public static final int ATTRIBUTE_OBJECT_STATUS
public static final int ATTRIBUTE_DEPLOYMENT_STATUS
public static final int ATTRIBUTE_CUSTOM_STATUS
public static final int ATTRIBUTE_APPSTORE_VERSION
public static final int ATTRIBUTE_DESCRIPTION
public static final int ATTRIBUTE_MAJOR_VERSION
public static final int ATTRIBUTE_MINOR_VERSION
public static final int ATTRIBUTE_OWNER_USER_ID
public static final int ATTRIBUTE_E_TAG
public static final int ATTRIBUTE_LID
public static final int ATTRIBUTE_NAME
public static final int ATTRIBUTE_CREATED_BY
public static final int ATTRIBUTE_HEAD
public static final int ATTRIBUTE_ACL_ID
public static final int ATTRIBUTE_CONTENT_IMPL_OID
public static final int ATTRIBUTE_UPDATE_TIME
public static final int ATTRIBUTE_CREATE_TIME
public static final int RELATION_RESOURCE_PROPERTIES
public static final int RELATION_LOCKS
public static final int RELATION_CONTENT
Constructor Detail |
---|
public Resource()
Method Detail |
---|
public void setRepositoryLoadProfile(RepositoryLoadProfile loadProfile)
RepositoryLoadProfile
.
loadProfile
- The Repository load profile for this resource.public boolean isProjected(int attribute)
attribute
- Any one of the LOAD_*
constants defined in
the resource type and its subtypes.
true
if the supplied attribute or composed object is
projected, false
otherwise.public Id getId()
urn:uuid:id<uuid>
.
Id
-based identifier.public void setId(Id idString)
idString
- This resource's unique identifier.public int getObjectType()
OBJECT_TYPE_*
constants.public void setObjectType(int objectType)
objectType
- A constant value selected from one of the
OBJECT_TYPE_*
constants.public java.lang.String getPath()
public void setPath(java.lang.String path)
path
- The path for this resource.public int getObjectStatus()
OBJECT_STATUS_*
constants, or a client-specified
value greater than or equal to 1024
.public void setObjectStatus(int objectStatus)
objectStatus
- A positive integer selected from one of the
OBJECT_STATUS_*
constants, or a client-specified value
greater than or equal to 1024
.public int getDeploymentStatus()
DEPLOYMENT_STATUS_*
constants, or a client-specified
value greater than or equal to 1024
.public void setDeploymentStatus(int deploymentStatus)
deploymentStatus
- This instance's deployment status.public java.lang.String getCustomStatus()
null
.public void setCustomStatus(java.lang.String customStatus)
customStatus
- A client-specified status string, which may be
null
.public java.lang.String getDescription()
null
.public void setDescription(java.lang.String description)
description
- This resource's description, which may be
null
.public int getMajorVersion()
public void setMajorVersion(int majorVersion)
majorVersion
- An integer that is strictly greater than zero if the
minor version is equal to zero. The major version is greater than
or equal to zero if the minor version is greater than zero.public int getMinorVersion()
public void setMinorVersion(int minorVersion)
minorVersion
- An integer that is greater than zero if the major
version is equal to zero. The minor version is greater than or
equal to zero if the major version is greater than zero.public java.lang.String getOwnerUserId()
public void setOwnerUserId(java.lang.String ownerUserId)
ownerUserId
- The user identifier (login identifier) of the user who
created this resource.public long getETag()
ResourceCollection
and its
subclasses, and enables clients to determine if the contents of a
collection have changed. E-Tag values on non-ResourceCollection
types will never
change.
public void setETag(long eTag)
ResourceCollection
and its
subclasses, and enables clients to determine if the contents of a
collection have changed. E-Tag values on non-ResourceCollection
types will never
change.
eTag
- A timestamp that is updated every time a resource version is
modified.public Lid getLid()
public void setLid(Lid lidString)
lidString
- This resource's logical identifier. The format of this
identifier is "urn:uuid:lid:<uuid>"
, where
<uuid>
is a DCE 128-bit Universally Unique
Identifier (UUID).public java.lang.String getName()
public void setName(java.lang.String name)
name
- This resource's name, which may not contain forward (
/
) or back (
) slashes, or any other
character that is not legal for Windows paths.public java.lang.String getCreatedBy()
public void setCreatedBy(java.lang.String createdBy)
createdBy
- The User Manager principal's object identifier for the
user who created this resource.public boolean getHead()
true
if this resource is the head version of a logical
resource, false
otherwise.public void setHead(boolean head)
head
- true
if this resource is the head version of a
logical resource, false
otherwise.public java.lang.String getAclId()
AccessControlList
.
public void setAclId(java.lang.String aclId)
aclId
- The ACL identifier for this resource.public java.util.Date getUpdateTime()
public void setUpdateTime(java.util.Date updateTime)
updateTime
- The time at which this resource was last modified.public java.util.Date getCreateTime()
public void setCreateTime(java.util.Date createTime)
createTime
- The time at which this resource was first written to the
Repository.public java.util.Collection getResourceProperties()
null
Collection
of ResourceProperty
instances.public void addResourceProperty(ResourceProperty resourceProperty)
resourceProperty
- public void removeResourceProperty(ResourceProperty resourceProperty)
resourceProperty
- The dynamic property to be removed from this
resource.public java.util.Collection getLocks()
public void addLock(Lock lock)
lock
- public void removeLock(Lock lock)
Lock
.
lock
- The lock to be removed from this resource.public ResourceContent getContent()
public void setContent(ResourceContent content)
ResourceContent
object.
resourceContent
- The ResourceContent
object to be
associated with this resource.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |