public interface CmHoldRelationship extends RepositoryObject, Replicable, Subscribable, IndependentlyPersistableObject
CmHold
(hold object)
and CmHoldable
object (the held object).
A CmHold
object can be referenced by more than one instance of this class, allowing a
many-to-many relationship between holds and held objects.
Therefore, a single hold can apply to multiple held objects,
and multiple holds can apply to a single held object.
Deletion of a CmHoldRelationship
object removes the hold on the held object;
it does not delete the CmHold
object and CmHoldable
objects
referenced by the CmHoldRelationship
object.
Created with a Factory method, a CmHoldRelationship
object is independently persistable,
but it is not independently securable. It takes its security from the CmHold
object.
By default, only object store administrators have the right to create and delete
CmHoldRelationship
subclasses and instances.
Modifier and Type | Method and Description |
---|---|
void |
changeClass(java.lang.String className)
Changes the class of a Content Engine object.
|
EventSet |
get_AuditedEvents()
Returns the value of the AuditedEvents property.
|
java.lang.String |
get_Creator()
Returns the value of the Creator property.
|
java.util.Date |
get_DateCreated()
Returns the value of the DateCreated property.
|
java.util.Date |
get_DateLastModified()
Returns the value of the DateLastModified property.
|
CmHoldable |
get_HeldObject()
Returns the value of the HeldObject property.
|
CmHold |
get_Hold()
Returns the value of the Hold property.
|
Id |
get_Id()
Returns the value of the Id property.
|
java.lang.String |
get_LastModifier()
Returns the value of the LastModifier property.
|
void |
set_Creator(java.lang.String value)
Sets the value of the Creator property.
|
void |
set_DateCreated(java.util.Date value)
Sets the value of the DateCreated property.
|
void |
set_DateLastModified(java.util.Date value)
Sets the value of the DateLastModified property.
|
void |
set_HeldObject(CmHoldable value)
Sets the value of the HeldObject property.
|
void |
set_Hold(CmHold value)
Sets the value of the Hold property.
|
void |
set_LastModifier(java.lang.String value)
Sets the value of the LastModifier property.
|
getObjectStore
get_ExternalReplicaIdentities, get_ReplicationGroup, set_ExternalReplicaIdentities, set_ReplicationGroup
raiseEvent
addPendingAction, clearPendingActions, delete, getAccessAllowed, getPendingActions, getUpdateSequenceNumber, isCurrent, save, save, setUpdateSequenceNumber
fetchProperties, fetchProperties, fetchProperty, fetchProperty, getObjectReference, refresh, refresh, refresh
get_ClassDescription, getClassName, getConnection, getProperties, getSuperClasses
EventSet get_AuditedEvents()
java.lang.String get_Creator()
void set_Creator(java.lang.String value)
java.util.Date get_DateCreated()
void set_DateCreated(java.util.Date value)
java.lang.String get_LastModifier()
void set_LastModifier(java.lang.String value)
java.util.Date get_DateLastModified()
void set_DateLastModified(java.util.Date value)
Id get_Id()
CmHold get_Hold()
void set_Hold(CmHold value)
CmHoldable get_HeldObject()
void set_HeldObject(CmHoldable value)
void changeClass(java.lang.String className)
changeClass
method does not modify the security for an object, even if the object's current security
is derived from the default security for its source class. For the object's user-defined properties,
the following rules apply:
null
if there is no default defined).null
) as the default value defined in the original class will be set
to the default value defined by the new class. However, any user-defined property that has had its value
modified from the default value will retain that modified value in the new class.When the class of a document object is changed, the default document lifecycle policy of the new class will only be applied to the document object's DocumentLifecyclePolicy property if both of the following scenarios occur:
Changing the document class of a document object has no effect on the storage location of the document’s content. For more information, see the Document Storage topic in the "Document Concepts" section of the Content Engine Java and .NET API Developer’s Guide.
className
- A String
specifying the symbolic name, ClassNames
constant, ID, or GUIDConstants
constant of the class to which this object is to be changed.E_NULL_OR_INVALID_PARAM_VALUE
- if className
is null
or has a length of zero.© Copyright IBM Corporation 2006, 2015. All rights reserved.