Skip navigation links

Oracle® Information Rights Management Server Java API Reference
11g Release 1 (11.1.1)

E12907-01


oracle.irm.engine.types.rights.context
Class ContextTemplateRef

java.lang.Object
  extended by oracle.irm.engine.types.rights.context.ContextTemplateRef

All Implemented Interfaces:
Serializable

public class ContextTemplateRef
extends Object
implements Serializable

Context Template reference. A context template provides a template structure for creating a ContextInstance. The template supplies the default labels for a context and the list of DocumentRole definitions available to the context manager. A ContextInstance has a permanent link back to the context template. If changes are made to the roles in the template, they immediately take effect in the context. This allows new role definitions that are added to the template to immediately be available for use in the context.

This class can be used to reference an instance of a ContextTemplate object. It contains all the properties needed to uniquely identify a ContextTemplate. The serialized form of this class can be used to identify an object without the need to serialize the complete object.

XML Serialization

Context Template instances can be serialized as an XML document. This XML document can also be used to recreate a Context Template object. The following XML document shows an example Context Template in XML form.

<?xml version="1.0" encoding="UTF-8"?>
<rights:ContextTemplate xmlns:rights="http://xmlns.oracle.com/irm/rights">
    <uuid>6c58fdc2-80fd-4d3a-9394-74fe873ed705</uuid>
    <labels>
        <locale>en</locale>
        <name>Standard Template</name>
        <description>This is the standard template</description>
    </labels>
    <status>ACTIVE</status>
    <roles>
        <uuid>c70e0920-a957-47e2-b045-7210acd758ee</uuid>
        <domain>
            <uuid>97bdf4f1-1375-4b28-9520-17a23503462f</uuid>
        </domain>
    </roles>
    <domain>
        <uuid>97bdf4f1-1375-4b28-9520-17a23503462f</uuid>
    </domain>
</rights:ContextTemplate>

Context Template instances can also be serialized by reference. A reference contains all the information needed to uniquely identify a Context Template without needing to serialize the complete object. The reference form of the XML document can be seen below.

<?xml version="1.0" encoding="UTF-8"?>
<rights:ContextTemplateRef xmlns:rights="http://xmlns.oracle.com/irm/rights">
    <uuid>6c58fdc2-80fd-4d3a-9394-74fe873ed705</uuid>
    <domain>
        <uuid>97bdf4f1-1375-4b28-9520-17a23503462f</uuid>
    </domain>
</rights:ContextTemplateRef>

See Also:
Serialized Form

Constructor Summary
ContextTemplateRef()
          No argument constructor.
ContextTemplateRef(UUID uuid, DomainRef domain)
          Constructor.

 

Method Summary
 DomainRef getDomain()
          The domain that owns this context template.
 UUID getUuid()
          An UUID for the template.
 void setDomain(DomainRef value)
          The domain that owns this context template.
 void setUuid(UUID value)
          An UUID for the template.

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Constructor Detail

ContextTemplateRef

public ContextTemplateRef()
No argument constructor.

ContextTemplateRef

public ContextTemplateRef(UUID uuid,
                          DomainRef domain)
Constructor.

Method Detail

getUuid

public UUID getUuid()
An UUID for the template.
Returns:
the value of the property.

setUuid

public void setUuid(UUID value)
An UUID for the template.
Parameters:
value - the new value for the property.

getDomain

public DomainRef getDomain()
The domain that owns this context template.
Returns:
the value of the property.

setDomain

public void setDomain(DomainRef value)
The domain that owns this context template.
Parameters:
value - the new value for the property.

Skip navigation links

Oracle® Information Rights Management Server Java API Reference
11g Release 1 (11.1.1)

E12907-01


Copyright © 2010, Oracle. All rights reserved.