Nuxeo Enterprise Platform 5.1

org.nuxeo.ecm.webapp.helpers
Interface ApplicationController

All Known Implementing Classes:
ApplicationControllerBean

Deprecated.

@Deprecated
public interface ApplicationController

Exposes the means to delegate the user call to the right ui application part that needs to handle it.

Should be used by any input controller ( action listener ) that needs to delegate the call to other components after finishing its own work.

Author:
Razvan Caraghin, Anahide Tchertchian
See Also:
http://www.martinfowler.com/eaaCatalog/applicationController.html

Method Summary
 void destroy()
          Deprecated. Called by seam when this component needs to be distroyed.
 String getPageOnCreatedDocumentType(Type docType)
          Deprecated. Return the page to display when given document type is selected for creation.
 String getPageOnCreateDocumentType(Type docType)
          Deprecated. Return the page to display when given document type is selected for creation.
 String getPageOnEditDocumentType(Type docType)
          Deprecated. Return the page to display when given document type is selected for edition.
 String getPageOnEditedDocumentType(Type docType)
          Deprecated. Return the page to display when given document type has been successfully edited.
 String getPageOnSelectedDocumentType(Type docType)
          Deprecated. Return the page to display when given document type is selected.
 

Method Detail

getPageOnSelectedDocumentType

String getPageOnSelectedDocumentType(Type docType)
Deprecated. 
Return the page to display when given document type is selected. Can be configured setting the document type default view (default-view attribute).


getPageOnCreateDocumentType

String getPageOnCreateDocumentType(Type docType)
Deprecated. 
Return the page to display when given document type is selected for creation. Can be configured setting the document type create view (create-view attribute).


getPageOnCreatedDocumentType

String getPageOnCreatedDocumentType(Type docType)
Deprecated. 
Return the page to display when given document type is selected for creation. Can be configured setting on the document type a view named after-create, falls back on the document default view if not set.


getPageOnEditDocumentType

String getPageOnEditDocumentType(Type docType)
Deprecated. 
Return the page to display when given document type is selected for edition. Can be configured setting the document type edit view (edit-view attribute).


getPageOnEditedDocumentType

String getPageOnEditedDocumentType(Type docType)
Deprecated. 
Return the page to display when given document type has been successfully edited. Can be configured setting on the document type a view named after-edit, falls back on the document default view if not set.


destroy

void destroy()
Deprecated. 
Called by seam when this component needs to be distroyed.


Nuxeo Enterprise Platform 5.1

Copyright ? 2007 Nuxeo SAS. All Rights Reserved.