Uses of Class
com.arsdigita.persistence.OID

Packages that use OID
com.arsdigita.auditing The Auditing Service provides a standard API and common mechanism for providing a Domain Object with auditing information. 
com.arsdigita.categorization The Categorization service provides an infrastructure for developers to categorize arbitrary content within the system. 
com.arsdigita.domain Domain Objects provide an application logic tier between the persistent storage and presentation tiers. 
com.arsdigita.formbuilder The Form Builder service provides the ability to build simple forms with a web user interface. 
com.arsdigita.formbuilder.actions Specific form actions that can be used by the form designer. 
com.arsdigita.formbuilder.parameters Validation listeners for formbuilder. 
com.arsdigita.globalization Provides a set of classes to support globalization of web applications. 
com.arsdigita.kernel Provides the classes that are essential for building a CCM web application, including ACSObject, packages, parties, and permissions. 
com.arsdigita.kernel.permissions The permissioning (authorization) system. 
com.arsdigita.kernel.ui Bebop widgets that display kernel objects. 
com.arsdigita.loader   
com.arsdigita.messaging Messaging provides a standard set of abstractions for creating and storing messages. 
com.arsdigita.mimetypes Tools for managing and representing mimetypes. 
com.arsdigita.mimetypes.converters Classes for converting between specific mimetypes. 
com.arsdigita.notification Notification provides the application-level capabilities needed for outbound email. 
com.arsdigita.persistence The classes in this package provide an API for creating and manipulating Data Objects. 
com.arsdigita.portal Basic portal infrastructure. 
com.arsdigita.portal.apportlet   
com.arsdigita.search Provides a set of APIs for interacting with search engines. 
com.arsdigita.search.intermedia Provides APIs to be used by query engine implementors to interact with the Oracle Intermedia search engine. 
com.arsdigita.ui.admin Basic user interface components for the administrative UI. 
com.arsdigita.ui.sitemap User interface for dynamically updating URL to application mappings. 
com.arsdigita.versioning Provides for versioning of data objects. 
com.arsdigita.web Tools supporting web-application authoring; services include dispatching requests, generating URLs, and setting up a request's context of execution. 
com.arsdigita.workflow.simple A tool framework for establishing collaboration among all the specialized members of a production staff. 
 

Uses of OID in com.arsdigita.auditing
 

Constructors in com.arsdigita.auditing with parameters of type OID
AuditedACSObject(OID oid)
          Equaivalent to the corresponding ACSObject constructor.
 

Uses of OID in com.arsdigita.categorization
 

Constructors in com.arsdigita.categorization with parameters of type OID
CategoryPurpose(OID oid)
          Deprecated. Retrieves the data object with the specified OID from the persistent storage mechanism.
Category(OID oid)
          Retrieves the data object with the specified OID from the persistent storage mechanism.
Category(OID categoryID, String name, String description)
          Retrieves the category with the given category ID, and sets the name and description.
Category(OID categoryID, String name, String description, String url)
          Retrieves the category with the given category ID, and sets the name and description.
 

Uses of OID in com.arsdigita.domain
 

Methods in com.arsdigita.domain that return OID
 OID DomainObject.getOID()
          Return the OID of this domain object.
 

Methods in com.arsdigita.domain with parameters of type OID
static DomainObject DomainObjectFactory.newInstance(OID oid)
          Instantiate a domain object given an OID.
protected  void DomainObject.remove(String propertyName, OID oid)
          Removes.
 

Constructors in com.arsdigita.domain with parameters of type OID
DomainObject(OID oid)
          Constructor.
ObservableDomainObject(OID oid)
          Constructor.
 

Uses of OID in com.arsdigita.formbuilder
 

Constructors in com.arsdigita.formbuilder with parameters of type OID
WidgetLabel(OID oid)
          Constructor.
PersistentTextField(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentTextArea(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentSubmit(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentSingleSelect(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentRadioGroup(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentPassword(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentSelect(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentMultipleSelect(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentLabel(OID oID)
          To be used by extending classes when retrieving instance from the database.
PersistentText(OID oID)
          To be used by extending classes when retrieving instance from the database.
PersistentHeading(OID oID)
          To be used by extending classes when retrieving instance from the database.
PersistentProcessListener(OID oid)
           
PersistentFormSection(OID oid)
          For sub classes to use.
PersistentForm(OID oid)
           
PersistentDeditor(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentDate(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentOption(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentOptionGroup(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
PersistentCheckboxGroup(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
MetaObject(OID oid)
          Constructor.
PersistentHidden(OID oID)
          Extending classes can use this constructor to set the sub class id and object type.
HiddenIDGenerator(OID oid)
           
PersistentDataQuery(OID oid)
          Constructor.
PersistentComponent(OID oID)
          Sub classes may use this constructor to retrieve an existing Component domain object with an id and object type
PersistentWidget(OID oID)
          Sub classes may use this constructor to retrieve an existing Widget domain object with an id and object type.
DataDrivenSelect(OID oid)
           
BebopObjectType(OID oid)
          Constructor.
 

Uses of OID in com.arsdigita.formbuilder.actions
 

Constructors in com.arsdigita.formbuilder.actions with parameters of type OID
XMLEmailListener(OID oid)
           
TemplateEmailListener(OID oid)
           
SimpleEmailListener(OID oid)
           
RemoteServerPostListener(OID oid)
           
ConfirmRedirectListener(OID oid)
           
ConfirmEmailListener(OID oid)
           
 

Uses of OID in com.arsdigita.formbuilder.parameters
 

Constructors in com.arsdigita.formbuilder.parameters with parameters of type OID
TextValidationListener(OID oid)
           
PersistentParameterListener(OID oID)
          Internal constructor to be used by subclasses
 

Uses of OID in com.arsdigita.globalization
 

Constructors in com.arsdigita.globalization with parameters of type OID
Charset(OID oid)
           Constructor.
Locale(OID oid)
           Constructor.
 

Uses of OID in com.arsdigita.kernel
 

Methods in com.arsdigita.kernel that return OID
 OID ACSObject.getSpecificOID()
          Gets the specific OID for this ACSObject, which is the tuple of the 'objectType' & 'id' properties.
 

Methods in com.arsdigita.kernel with parameters of type OID
static UserAuthentication UserAuthentication.retrieveForUser(OID userOID)
          Retrieves a UserAuthentication object for the user with the specified OID.
static UserAuthentication UserAuthentication.createForUser(OID userOID)
          Creates a UserAuthentication object for the user with the specified OID.
static String URLService.locate(OID oid)
          Returns a URL path to a page that displays the object identified by the given oid.
static String URLService.locate(OID oid, String context)
          Returns a URL path to a page that displays the object identified by the given oid.
 String URLFinder.find(OID oid)
          Returns a URL path to a page that displays the object identified by the given OID.
 String URLFinder.find(OID oid, String context)
           
 String GenericURLFinder.find(OID oid, String context)
           
 String GenericURLFinder.find(OID oid)
           
static ResourceType ResourceType.retrieveResourceType(OID oid)
           
static Resource Resource.retrieveResource(OID oid)
           
static User User.retrieve(OID oid)
          Retrieves a user with the given OID.
 

Constructors in com.arsdigita.kernel with parameters of type OID
Stylesheet(OID oid)
           
PackageInstance(OID oid)
          Retrieves the PackageInstance domain object with the specified OID.
PackageType(OID oid)
          Deprecated. Constructor in which th contained DataObject is retrieved from the persistent storage mechanism with an OID specified by oid.
SiteNode(OID oid)
          Deprecated. Retrieves a SiteNode that corresponds to the specified OID.
Resource(OID oid)
           
Role(OID oid)
          Constructor.
Group(OID oid)
          Constructor in which the contained DataObject is retrieved from the persistent storage mechanism with an OID specified by oid.
ACSObject(OID oid)
          Constructor in which the contained DataObject is retrieved from the persistent storage mechanism using the specified OID.
Party(OID oid)
          Constructor in which the contained DataObject is retrieved from the persistent storage mechanism with an OID specified by oid.
User(OID oid)
          Deprecated. Use User.retrieve(OID) instead. This constructor will eventually be made protected.
 

Uses of OID in com.arsdigita.kernel.permissions
 

Methods in com.arsdigita.kernel.permissions that return OID
 OID PermissionManager.checkOID(OID oid)
          this takes in an OID and returns the public OID if the passed in value is null.
 OID PermissionDescriptor.getPartyOID()
          Returns the OID of the Party that is the grantee of the PrivilegeDescriptor associated with this PermissionDescriptor.
 OID PermissionDescriptor.getACSObjectOID()
          Returns the OID of the ACSObject that the Party has the PrivilegeDescriptor on.
 OID ObjectPermissionCollection.getGranteeOID()
          Returns the party OID of the grantee of the current permission record.
 

Methods in com.arsdigita.kernel.permissions with parameters of type OID
static DataObject PermissionService.getContext(OID oid)
          Returns the data object that serves as the permission context of the ACS object specified by OID.
static void PermissionService.setContext(OID acsObjectOID, OID contextOID)
          Sets the permission context of the object specified by acsObjectOID to the object specified by contextOID.
static void PermissionService.clonePermissions(OID acsObjectOID)
          Adds explicit permissions to the object specified by acsObjectOID to all permissions currently inherited from its permission context and resets the permissions context to null.
static ObjectPermissionCollection PermissionService.getGrantedPermissions(OID acsObjectOID)
          Returns the set of permissions that have been granted on the specified object, including those inherited from the object's permission context.
static ObjectPermissionCollection PermissionService.getDirectGrantedPermissions(OID acsObjectOID)
          Returns the set of permissions that have been granted directly on the specified object, excluding those inherited from the object's permission context.
static void PermissionService.filterObjects(DataCollection dataCollection, PrivilegeDescriptor privilege, OID userOID)
          Filters a data collection to include only those objects that the specified user has the specified privilege on.
static void PermissionService.filterObjects(DomainCollection domainCollection, PrivilegeDescriptor privilege, OID userOID)
          Filters a domain collection to include only those objects that the specified user has the specified privilege on.
static void PermissionService.filterQuery(DataQuery dataQuery, String propertyName, PrivilegeDescriptor privilege, OID userOID)
          
Filters a data query to include only those results where the specified user has the specified privilege on the ACSObject identified by the specified property name.
static void PermissionService.objectFilterQuery(DataQuery dataQuery, String propertyName, PrivilegeDescriptor privilege, OID objectOID)
          Filters a data query that retrieves a list of users by only allowing the users who have access to the specified object.
static Filter PermissionService.getFilterQuery(FilterFactory factory, String propertyName, PrivilegeDescriptor privilege, OID partyOID)
          Returns a Filter to include only those results where the specified user has the specified privilege on the ACSObject identified by the specified property name.
static Filter PermissionService.getObjectFilterQuery(FilterFactory factory, String propertyName, PrivilegeDescriptor privilege, OID oid)
           
static Iterator PermissionService.getDirectPrivileges(OID object, OID party)
          Gets the privileges that the specified party has been directly granted on the specified object.
static Iterator PermissionService.getPrivileges(OID object, OID party)
          Gets the privileges that the specified party has on the specified object.
static Iterator PermissionService.getImpliedPrivileges(OID object, OID party)
          Gets all the privileges that the specified party has on the specified object, including implied privileges.
static void PermissionService.revokePartyPermissions(OID partyOID)
          Revoke all permissions belonging to the specified party.
 DataObject PermissionManager.getContext(OID oid)
          Returns the data object that serves as the permission context of the ACS object specified by OID.
 void PermissionManager.setContext(OID acsObjectOID, OID contextOID)
          Sets the permission context of the object specified by acsObjectOID to the object specified by contextOID.
 void PermissionManager.clonePermissions(OID acsObjectOID)
          Adds explicit permissions to the object specified by acsObjectOID to all permissions currently inherited from its permission context and resets the permissions context to null.
 ObjectPermissionCollection PermissionManager.getGrantedPermissions(OID acsObjectOID)
          Returns the set of permissions that have been granted on the specified object, including those inherited from the object's permission context.
 void PermissionManager.filterObjects(DataCollection dataCollection, PrivilegeDescriptor privilege, OID partyOID)
          
Filters a data collection to include only those objects that the specified party has the specified privilege on.
 void PermissionManager.filterQuery(DataQuery dataQuery, String propertyName, PrivilegeDescriptor privilege, OID partyOID)
          Filters a data query to include only those results where the specified party has the specified privilege on the ACSObject identified by the specified property name.
 Filter PermissionManager.getFilterQuery(FilterFactory factory, String propertyName, PrivilegeDescriptor privilege, OID partyOID)
          Returns a Filter to include only those results where the specified party has the specified privilege on the ACSObject identified by the specified property name.
 Filter PermissionManager.getObjectFilterQuery(FilterFactory factory, String propertyName, PrivilegeDescriptor privilege, OID objectOID)
           
 Iterator PermissionManager.getPrivileges(OID object, OID party)
          Gets the privileges that the specified party has on the specified object.
 Iterator PermissionManager.getImpliedPrivileges(OID object, OID party)
          Gets all the privileges that the specified party has on the specified object, including implied privileges.
static Collection PermissionManager.constructAccessList(OID partyOID)
          Deprecated. this is slower than using "normal" permission checks since "in ("") transformed into union by Oracle SQL Optimizer
 OID PermissionManager.checkOID(OID oid)
          this takes in an OID and returns the public OID if the passed in value is null.
 

Constructors in com.arsdigita.kernel.permissions with parameters of type OID
UniversalPermissionDescriptor(PrivilegeDescriptor privilege, OID partyOID)
          Creates a new UniversalPermissionDescriptor object for the party with the specified OID.
PermissionDescriptor(PrivilegeDescriptor privilege, OID acsObjectOID, OID partyOID)
          Creates a new PermissionDescriptor object for the party with the given OID, that grants the specified privilege on the ACS object with the given OID.
 

Uses of OID in com.arsdigita.kernel.ui
 

Methods in com.arsdigita.kernel.ui with parameters of type OID
 void DataQueryTreeIterator.filterQuery(String propertyName, PrivilegeDescriptor privilege, OID userOID)
           
 

Uses of OID in com.arsdigita.loader
 

Methods in com.arsdigita.loader with parameters of type OID
static boolean PackageLoader.exists(Session ssn, OID oid)
           
static void PackageLoader.requires(Session ssn, OID oid)
           
 

Uses of OID in com.arsdigita.messaging
 

Constructors in com.arsdigita.messaging with parameters of type OID
MessageThread(OID id)
           
ThreadedMessage(OID oid)
          Creates a threaded message by retrieving it from the database using its OID.
MessagePart(OID oid)
          Retrieves an existing part from the database using its OID.
Message(OID oid)
          Creates a message by retrieving it from the database using its OID.
 

Uses of OID in com.arsdigita.mimetypes
 

Constructors in com.arsdigita.mimetypes with parameters of type OID
TextMimeType(OID oid)
          Load an existing TextMimeType.
MimeTypeStatus(OID oid)
           
ImageMimeType(OID oid)
          Load an existing ImageMimeType.
MimeTypeExtension(OID oid)
           
MimeType(OID oid)
          Load an existing MimeType.
 

Uses of OID in com.arsdigita.mimetypes.converters
 

Constructors in com.arsdigita.mimetypes.converters with parameters of type OID
PreConvertHTML(OID oid)
          Constructor.
PostConvertHTML(OID oid)
          Constructor.
 

Uses of OID in com.arsdigita.notification
 

Constructors in com.arsdigita.notification with parameters of type OID
Notification(OID oid)
          Retrieves an existing notification from the database using its OID.
Digest(OID oid)
          Retrieves an existing digest from the database.
BaseSubscription(OID oid)
           
 

Uses of OID in com.arsdigita.persistence
 

Methods in com.arsdigita.persistence that return OID
 OID DataObject.getOID()
          Returns the unique id of this persistent object.
static OID OID.valueOf(String s)
           
 

Methods in com.arsdigita.persistence with parameters of type OID
 boolean DataQueryDataCollectionAdapter.contains(OID oid)
           
 DataObject Session.create(OID oid)
          Creates a new DataObject with the type of the given oid and initializes the key properties to the values specified in the oid.
 DataObject Session.retrieve(OID oid)
          Retrieves the DataObject specified by oid.
 boolean Session.delete(OID oid)
          Deletes the persistent object of the given type with the given oid.
 boolean DataCollection.contains(OID oid)
          Tests whether the current collection contains an object.
 void DataAssociation.remove(OID oid)
          Removes object from the collection.
 

Uses of OID in com.arsdigita.portal
 

Methods in com.arsdigita.portal with parameters of type OID
static PortletType PortletType.retrievePortletType(OID oid)
           
static Portal Portal.retrieve(OID oid)
          Retrieve an existing portal based on an OID.
static Portlet Portlet.retrievePortlet(OID oid)
          Retrieve a portlet given its OID.
 

Constructors in com.arsdigita.portal with parameters of type OID
Portal(OID oid)
           
Portlet(OID oid)
           
AgentPortlet(OID oid)
           
 

Uses of OID in com.arsdigita.portal.apportlet
 

Methods in com.arsdigita.portal.apportlet with parameters of type OID
static AppPortletType AppPortletType.retrieveAppPortletType(OID oid)
           
 

Uses of OID in com.arsdigita.search
 

Methods in com.arsdigita.search that return OID
 OID Document.getOID()
          Gets the unique OID for the domain object referenced by this document
 OID BaseDocument.getOID()
          Gets the unique OID for the domain object referenced by this document
 

Constructors in com.arsdigita.search with parameters of type OID
SearchableACSObject(OID oid)
          Deprecated.  
BaseDocument(OID oid, Locale locale, String title, String summary, Date creationDate, Party creationParty, Date modifiedDate, Party modifiedParty, BigDecimal score)
          Creates a new document;
BaseDocument(URL url, OID oid, Locale locale, String title, String summary, Date creationDate, Party creationParty, Date modifiedDate, Party modifiedParty, BigDecimal score)
           
 

Uses of OID in com.arsdigita.search.intermedia
 

Methods in com.arsdigita.search.intermedia that return OID
 OID SearchDataQuery.getOID()
          Return the OID of the result
 

Constructors in com.arsdigita.search.intermedia with parameters of type OID
SearchableACSObject(OID oid)
          Deprecated.  
 

Uses of OID in com.arsdigita.ui.admin
 

Constructors in com.arsdigita.ui.admin with parameters of type OID
Admin(OID oid)
           
 

Uses of OID in com.arsdigita.ui.sitemap
 

Constructors in com.arsdigita.ui.sitemap with parameters of type OID
SiteMap(OID oid)
           
 

Uses of OID in com.arsdigita.versioning
 

Methods in com.arsdigita.versioning that return OID
 OID VersioningServlet.VersionedObjects.getOID()
           
 OID VersioningServlet.RollbackLogger.getOID()
           
 OID Operation.getObject()
           
 OID Tag.getOID()
           
 OID Difference.Change.getOID()
           
 

Methods in com.arsdigita.versioning with parameters of type OID
static void Versions.tag(OID oid, String tag)
          Tags changes made in the current session.
static BigInteger Versions.getMostRecentTxnID(OID oid, String tag)
          Returns the most recent versioning txn id for this oid that has been tagged with tag.
static TransactionCollection Versions.getTaggedTransactions(OID oid, boolean down)
           
static TransactionCollection Versions.getTaggedTransactions(OID oid)
           
static Difference Versions.diff(OID oid, BigInteger fromID, BigInteger toID)
           
static Difference Versions.diff(OID oid, Transaction from, Transaction to)
           
static DataObject Versions.rollback(OID oid, BigInteger txnID)
          Rolls back the versioned data object specified by oid to an earlier state specified by the changeID and returns the rolled back data object.
static Audited Versions.getAuditInfo(OID oid)
          Returns the audit info for the data object identified by oid.
 

Constructors in com.arsdigita.versioning with parameters of type OID
VersionedACSObject(OID oid, boolean checkDeleted)
          Deprecated.  
VersionedACSObject(OID oid)
          Deprecated.  
 

Uses of OID in com.arsdigita.web
 

Methods in com.arsdigita.web with parameters of type OID
static ApplicationType ApplicationType.retrieveApplicationType(OID oid)
           
static Application Application.retrieveApplication(OID oid)
           
 

Constructors in com.arsdigita.web with parameters of type OID
Application(OID oid)
           
 

Uses of OID in com.arsdigita.workflow.simple
 

Methods in com.arsdigita.workflow.simple that return OID
 OID UserTask.getUserTaskOID()
          Returns the OID of this user task.
 OID WorkflowTemplate.getObjectOID()
           
 OID TaskComment.getUserOID()
          Retrieves the user OID of the user who created the comment.
 OID Workflow.getObjectOID()
          Returns the object associated with the process.
 

Constructors in com.arsdigita.workflow.simple with parameters of type OID
UserTask(OID oid)
          Restores a user task definition from an OID.
WorkflowTemplate(OID oid)
          Restores a workflow process definition with an OID.
TaskComment(OID oid)
          Restores the task ID with the OID.
Workflow(OID oid)
          Restores a workflow process using an OID.
Task(OID oid)
          Creates a new task for a given OID.
 



Copyright (c) 2004 Red Hat, Inc. Corporation. All Rights Reserved. Generated at July 21 2004:2337 UTC