Uses of Interface
com.arsdigita.persistence.DataObject

Packages that use DataObject
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.messaging Messaging provides a standard set of abstractions for creating and storing messages. 
com.arsdigita.mimetypes Tools for managing and representing 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.search.lucene Provides APIs to be used by query engine implementors to interact with the Lucene 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 DataObject in com.arsdigita.auditing
 

Methods in com.arsdigita.auditing with parameters of type DataObject
 void AuditingObserver.add(DomainObject dobj, String name, DataObject dataObject)
           
 void AuditingObserver.remove(DomainObject dobj, String name, DataObject dataObject)
           
 

Constructors in com.arsdigita.auditing with parameters of type DataObject
BasicAuditTrail(DataObject object)
           
AuditedACSObject(DataObject AuditedACSObjectData)
          Equaivalent to the corresponding ACSObject constructor.
 

Uses of DataObject in com.arsdigita.categorization
 

Constructors in com.arsdigita.categorization with parameters of type DataObject
CategorizedObject(DataObject dataObject)
          Creates the appropriate type of ACS object from the passed in data object.
CategoryPurpose(DataObject categoryPurposeObjectData)
          Deprecated. Initializes with the specified data object.
Category(DataObject categoryObjectData)
          Initializes the category with the specified data object.
 

Uses of DataObject in com.arsdigita.domain
 

Methods in com.arsdigita.domain that return DataObject
static DataObject DomainServiceInterfaceExposer.getDataObject(DomainObject domainObject)
          Get the underlying DataObject of the DomainObject
static DataObject DomainServiceInterfaceExposer.add(DomainObject domainObject, String roleName, DataObject value)
          Adds data object specified by value to the specified role (with multiplicity>1) of the specified domain object.
static DataObject DomainServiceInterfaceExposer.add(DomainObject domainObject, String roleName, DomainObject value)
          Adds domain object specified by value to the specified role (with multiplicity>1) of the specified domain object.
protected static DataObject DomainService.getDataObject(DomainObject domainObject)
          Get the underlying DataObject of the DomainObject
protected static DataObject DomainService.add(DomainObject domainObject, String roleName, DataObject value)
          Adds data object specified by value to the specified role (with multiplicity>1) of the specified domain object.
protected static DataObject DomainService.add(DomainObject domainObject, String roleName, DomainObject value)
          Adds domain object specified by value to the specified role (with multiplicity>1) of the specified domain object.
 DataObject DomainObject.addToAssociation(DataAssociation da)
          Add the DomainObject to a DataAssociation
protected  DataObject DomainObject.add(String propertyName, DataObject dataObject)
          Adds to associations with multiplicty > 1.
protected  DataObject DomainObject.add(String propertyName, DomainObject dobj)
          Adds to associations with multiplicty > 1.
 

Methods in com.arsdigita.domain with parameters of type DataObject
 void DeleteException.addDependency(String property, DataObject obj)
          Add a object dependency
protected  DomainObject ReflectionInstantiator.doNewInstance(DataObject dataObject)
          Construct a DomainObject given a data object.
 void AbstractDomainObjectObserver.add(DomainObject dobj, String name, DataObject dataObject)
          Callback for an add operation on the observed DomainObject
 void AbstractDomainObjectObserver.remove(DomainObject dobj, String name, DataObject dataObject)
          Callback for a remove operation on the observed DomainObject
static DataObject DomainServiceInterfaceExposer.add(DomainObject domainObject, String roleName, DataObject value)
          Adds data object specified by value to the specified role (with multiplicity>1) of the specified domain object.
static void DomainServiceInterfaceExposer.remove(DomainObject domainObject, String roleName, DataObject value)
          Removes data object specified by value from the specified role (with multiplicity>1) of the specified domain object.
static DomainObject DomainObjectFactory.newInstance(DataObject dataObject)
          Instantiates a domain object given a data object.
protected static DataObject DomainService.add(DomainObject domainObject, String roleName, DataObject value)
          Adds data object specified by value to the specified role (with multiplicity>1) of the specified domain object.
protected static void DomainService.remove(DomainObject domainObject, String roleName, DataObject value)
          Removes data object specified by value from the specified role (with multiplicity>1) of the specified domain object.
 DomainObjectInstantiator DomainObjectInstantiator.resolveInstantiator(DataObject dataObject)
          Return a delegated instantiator.
protected abstract  DomainObject DomainObjectInstantiator.doNewInstance(DataObject dataObject)
          Construct a DomainObject given a data object.
 void DomainObjectObserver.add(DomainObject dobj, String name, DataObject dataObject)
          Callback for an add operation on the observed DomainObject
 void DomainObjectObserver.remove(DomainObject dobj, String name, DataObject dataObject)
          Callback for a remove operation on the observed DomainObject
protected static void DomainObject.setAssociation(DataObject dobj, String attr, DomainObject target)
           
protected  DataObject DomainObject.add(String propertyName, DataObject dataObject)
          Adds to associations with multiplicty > 1.
protected  void DomainObject.remove(String propertyName, DataObject dataObject)
          Removes from associations with multiplicity > 1.
 

Constructors in com.arsdigita.domain with parameters of type DataObject
DomainObject(DataObject dataObject)
          Constructor.
ObservableDomainObject(DataObject dobj)
           
 

Uses of DataObject in com.arsdigita.formbuilder
 

Methods in com.arsdigita.formbuilder with parameters of type DataObject
static MetaObject MetaObject.retrieve(DataObject obj)
           
 

Constructors in com.arsdigita.formbuilder with parameters of type DataObject
WidgetLabel(DataObject obj)
          Constructor.
PersistentTextField(DataObject obj)
           
PersistentTextArea(DataObject obj)
           
PersistentSubmit(DataObject obj)
           
PersistentSingleSelect(DataObject obj)
           
PersistentRadioGroup(DataObject obj)
           
PersistentPassword(DataObject obj)
           
PersistentSelect(DataObject obj)
           
PersistentMultipleSelect(DataObject obj)
           
PersistentLabel(DataObject obj)
           
PersistentText(DataObject obj)
           
PersistentHeading(DataObject obj)
           
PersistentProcessListener(DataObject obj)
           
PersistentFormSection(DataObject obj)
           
PersistentForm(DataObject obj)
           
PersistentDeditor(DataObject obj)
           
PersistentDate(DataObject obj)
           
PersistentOption(DataObject obj)
           
PersistentOptionGroup(DataObject obj)
           
PersistentCheckboxGroup(DataObject obj)
           
MetaObject(DataObject obj)
          Constructor.
PersistentHidden(DataObject obj)
           
HiddenIDGenerator(DataObject obj)
           
PersistentDataQuery(DataObject obj)
          Constructor.
PersistentComponent(DataObject obj)
           
PersistentWidget(DataObject obj)
           
DataDrivenSelect(DataObject obj)
           
BebopObjectType(DataObject obj)
          Constructor.
 

Uses of DataObject in com.arsdigita.formbuilder.actions
 

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

Uses of DataObject in com.arsdigita.formbuilder.parameters
 

Constructors in com.arsdigita.formbuilder.parameters with parameters of type DataObject
TextValidationListener(DataObject obj)
           
PersistentStringInRangeValidationListener(DataObject obj)
           
PersistentParameterListener(DataObject obj)
           
 

Uses of DataObject in com.arsdigita.globalization
 

Constructors in com.arsdigita.globalization with parameters of type DataObject
Charset(DataObject dataObject)
           Constructor.
Locale(DataObject dataObject)
           Constructor.
 

Uses of DataObject in com.arsdigita.kernel
 

Methods in com.arsdigita.kernel with parameters of type DataObject
 DomainObjectInstantiator ACSObjectInstantiator.resolveInstantiator(DataObject dataObject)
          Returns the instantiator that is registered with DomainObjectFactory for the object type identified by the specified data object's objectType property.
protected  DomainObject ACSObjectInstantiator.doNewInstance(DataObject dataObject)
          UNSUPPORTED--Given a data object, constructs a DomainObject.
static ResourceType ResourceType.retrieveResourceType(DataObject dataObject)
           
static Resource Resource.retrieveResource(DataObject dobj)
           
static User User.retrieve(DataObject userData)
          Returns a user for the given data object.
 

Constructors in com.arsdigita.kernel with parameters of type DataObject
Stylesheet(DataObject dataObject)
           
PackageInstance(DataObject dataObject)
          Constructs a PackageInstance domain object from a package instance data object.
PackageType(DataObject dataObject)
          Deprecated. Constructor in which the contained DataObject is initialized with a new DataObject with an ObjectType specified by the string typeName.
SiteNode(DataObject dataObject)
          Deprecated. Creates a new DomainObject instance to encapsulate a given data object.
ResourceType(DataObject dataObject)
           
Resource(DataObject dataObject)
           
Role(DataObject dataObject)
          Constructor.
Group(DataObject groupData)
           
EmailAddress(DataObject emailData)
          Creates a new EmailAddress instance backed by a data object of type com.arsdigita.kernel.EmailAddress.
PersonName(DataObject nameData)
           
ACSObject(DataObject acsObjectData)
           
Party(DataObject partyData)
           
User(DataObject userData)
          Deprecated. Use User.retrieve(DataObject)
 

Uses of DataObject in com.arsdigita.kernel.permissions
 

Methods in com.arsdigita.kernel.permissions that return DataObject
static DataObject PermissionService.getContext(OID oid)
          Returns the data object that serves as the permission context of the ACS object specified by OID.
static DataObject PermissionService.getContext(ACSObject acsObject)
          Returns the data object that serves as the permission context of the specified ACS object.
 DataObject PermissionManager.getContext(OID oid)
          Returns the data object that serves as the permission context of the ACS object specified by OID.
 DataObject PermissionManager.getContext(ACSObject acsObject)
          Returns the data object that serves as the permission context of the specified ACS object.
 

Methods in com.arsdigita.kernel.permissions with parameters of type DataObject
 void PermissionsObserver.add(DomainObject dobj, String name, DataObject dataObject)
           
 void PermissionsObserver.remove(DomainObject dobj, String name, DataObject dataObject)
           
 

Uses of DataObject in com.arsdigita.messaging
 

Constructors in com.arsdigita.messaging with parameters of type DataObject
MessageThread(DataObject data)
           
ThreadedMessage(DataObject dataObject)
          Creates a threaded message from its underlying data object.
MessagePart(DataObject dataObject)
          Creates a part from its underlying DataObject.
Message(DataObject dataObject)
          Creates a message from its underlying data object.
 

Uses of DataObject in com.arsdigita.mimetypes
 

Constructors in com.arsdigita.mimetypes with parameters of type DataObject
TextMimeType(DataObject obj)
          Construct a new TextMimeType from the given DataObject.
MimeTypeStatus(DataObject obj)
           
ImageMimeType(DataObject obj)
          Construct a new ImageMimeType from the given DataObject.
MimeTypeExtension(DataObject obj)
           
MimeType(DataObject obj)
          Construct a new MimeType from the given DataObject.
 

Uses of DataObject in com.arsdigita.notification
 

Constructors in com.arsdigita.notification with parameters of type DataObject
Digest(DataObject dataObj)
          Creates a Digest from a DataObject
BaseSubscription(DataObject dataObj)
           
 

Uses of DataObject in com.arsdigita.persistence
 

Methods in com.arsdigita.persistence that return DataObject
 DataObject DataQueryDataCollectionAdapter.getDataObject()
           
 DataObject DataAssociationCursor.getLink()
          Returns the link associated with the current row.
 DataObject Session.create(ObjectType type)
          Creates and returns a DataObject of the given type.
 DataObject Session.create(String typeName)
          Creates and returns an empty DataObject of the given type.
 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.
 DataObject DataCollection.getDataObject()
          Returns a data object for the current position in the collection.
 DataObject DataAssociation.add(DataObject object)
          Adds object to the persistent association.
 DataObject DataAssociation.getDataObject()
          Deprecated. use DataAssociation.cursor().getDataObject()
 

Methods in com.arsdigita.persistence with parameters of type DataObject
 boolean DataQueryDataCollectionAdapter.contains(DataObject dobj)
           
 void DataHandler.doDelete(DataObject data)
          This method is called in order to delete a data object.
 void DataObserver.set(DataObject object, String property, Object previous, Object value)
           
 void DataObserver.add(DataObject object, String property, DataObject value)
           
 void DataObserver.remove(DataObject object, String property, DataObject value)
           
 void DataObserver.clear(DataObject object, String property)
           
 void DataObserver.beforeSave(DataObject object)
           
 void DataObserver.afterSave(DataObject object)
           
 void DataObserver.beforeDelete(DataObject object)
           
 void DataObserver.afterDelete(DataObject object)
           
 boolean DataCollection.contains(DataObject data)
          Tests whether the current collection contains an object.
 DataObject DataAssociation.add(DataObject object)
          Adds object to the persistent association.
 void DataAssociation.remove(DataObject object)
          Removes object from the collection.
 

Uses of DataObject in com.arsdigita.portal
 

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

Constructors in com.arsdigita.portal with parameters of type DataObject
PortletType(DataObject dataObject)
           
Portal(DataObject dataObject)
           
Portlet(DataObject dataObject)
           
AgentPortlet(DataObject dataObject)
           
 

Uses of DataObject in com.arsdigita.portal.apportlet
 

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

Constructors in com.arsdigita.portal.apportlet with parameters of type DataObject
AppPortletType(DataObject dataObject)
           
AppPortlet(DataObject dataObject)
           
 

Uses of DataObject in com.arsdigita.search
 

Constructors in com.arsdigita.search with parameters of type DataObject
SearchableACSObject(DataObject SearchableACSObjectData)
          Deprecated.  
 

Uses of DataObject in com.arsdigita.search.intermedia
 

Methods in com.arsdigita.search.intermedia with parameters of type DataObject
 void SearchableObserver.add(DomainObject dobj, String name, DataObject dataObject)
          Deprecated.  
 void SearchableObserver.remove(DomainObject dobj, String name, DataObject dataObject)
          Deprecated.  
 

Constructors in com.arsdigita.search.intermedia with parameters of type DataObject
SearchableACSObject(DataObject SearchableACSObjectData)
          Deprecated. CONSTRUCTORS so that we are compatible with ACSObject
 

Uses of DataObject in com.arsdigita.search.lucene
 

Methods in com.arsdigita.search.lucene with parameters of type DataObject
protected static Document Document.retrieve(DataObject data)
           
 

Uses of DataObject in com.arsdigita.ui.admin
 

Constructors in com.arsdigita.ui.admin with parameters of type DataObject
Admin(DataObject obj)
           
 

Uses of DataObject in com.arsdigita.ui.sitemap
 

Constructors in com.arsdigita.ui.sitemap with parameters of type DataObject
SiteMap(DataObject obj)
           
 

Uses of DataObject in com.arsdigita.versioning
 

Methods in com.arsdigita.versioning that return DataObject
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.
 

Constructors in com.arsdigita.versioning with parameters of type DataObject
VersionedACSObject(DataObject data)
          Deprecated.  
 

Uses of DataObject in com.arsdigita.web
 

Methods in com.arsdigita.web with parameters of type DataObject
static ApplicationType ApplicationType.retrieveApplicationType(DataObject dataObject)
           
static Application Application.retrieveApplication(DataObject dobj)
           
 

Constructors in com.arsdigita.web with parameters of type DataObject
WebApp(DataObject data)
           
Host(DataObject dobj)
           
ApplicationType(DataObject dataObject)
           
Application(DataObject dataObject)
           
 

Uses of DataObject in com.arsdigita.workflow.simple
 

Constructors in com.arsdigita.workflow.simple with parameters of type DataObject
UserTask(DataObject userTaskObject)
          Constructor for restoring a user task from a data object.
WorkflowTemplate(DataObject workflowTemplateDataObject)
          Restores a workflow process definition from task data object.
TaskComment(DataObject commentDataObject)
          Constructor to restore a task comment by data object.
Workflow(DataObject workflowDataObject)
          Restores a workflow process from a task data object.
Task(DataObject taskDataObject)
          Restores a task from a data object.
 



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