com.filenet.wcm.apps.server.ui.operation

Class WcmBatchAction

  1. java.lang.Object
  2. extended bycom.filenet.wcm.toolkit.server.base.WcmDpContainer
  3. extended bycom.filenet.wcm.toolkit.server.base.WcmModule
  4. extended bycom.filenet.wcm.toolkit.server.base.GlobalEventModule
  5. extended bycom.filenet.wcm.toolkit.server.base.WcmUiModule
  6. extended bycom.filenet.wcm.toolkit.server.ui.WcmJSPModule
  7. extended bycom.filenet.wcm.toolkit.server.ui.WcmLayoutModule
  8. extended bycom.filenet.wcm.apps.server.ui.layout.WcmWorkplaceLayoutModule
  9. extended bycom.filenet.wcm.apps.server.ui.operation.WcmBatchAction
All implemented interfaces:
com.filenet.wcm.toolkit.server.base.WcmModuleInterface, com.filenet.wcm.toolkit.server.base.WcmUiModuleInterface

  1. public class WcmBatchAction
  2. extends WcmWorkplaceLayoutModule
Batch operation action module.

Field Summary

Modifier and Type Field and Description
  1. static
  2. int
COMMAND_ASSIGNSECURITYPOLICY
  1. static
  2. int
COMMAND_CANCELCHECKOUT
  1. static
  2. int
COMMAND_CHECKOUT
  1. static
  2. int
COMMAND_DELETE
  1. static
  2. int
COMMAND_FILE
  1. static
  2. int
COMMAND_MOVE
Fields inherited from class com.filenet.wcm.apps.server.ui.layout.WcmWorkplaceLayoutModule
bannerModule, contextMenu, footerLinksBarModule, footerModule, leftCSSClass, MAIN_MODE, multiSelectMenu, OPERATION_MODE, renderLeftBar, showFooterLinksBar, tabBarModule, treeModule
Fields inherited from class com.filenet.wcm.toolkit.server.ui.WcmLayoutModule
jspMode, layout
Fields inherited from class com.filenet.wcm.toolkit.server.base.WcmModule
locale, NAME_DELIMITER

Constructor Summary

Constructor and Description
WcmBatchAction()

Method Summary

Modifier and Type Method and Description
  1. protected
  2. boolean
checkParam(java.lang.Object o)
Make sure object is not null and has some value.
  1. void
initialize()
  1. void
onStartPage(javax.servlet.http.HttpServletRequest request,javax.servlet.http.HttpServletResponse response)
Methods inherited from class com.filenet.wcm.apps.server.ui.layout.WcmWorkplaceLayoutModule
addModule, addModule, addPrimaryPageAnchors, createLayout, getAnchorTree, getBannerBar, getFooter, getFooterLinksBar, getOperationTitle, getPageTabId, getPrimaryPageAnchors, getTabBar, isAdminLinkAvailable, registerAddedModules, renderLayout, resetPrimaryPageAnchors, setAddContextMenu, setMode, setOperationTitle, setOperationTitle, setOperationTitle, setOperationTitle, setRemoveTreeModule, setShowFooterLinksBar, setTabBarSelection
Methods inherited from class com.filenet.wcm.toolkit.server.ui.WcmLayoutModule
getLayout, render, setJSP
Methods inherited from class com.filenet.wcm.toolkit.server.ui.WcmJSPModule
getCurrentModule
Methods inherited from class com.filenet.wcm.toolkit.server.base.WcmUiModule
getActive, getBasePath, getBaseUrl, getBaseURLBuilder, getControllerEventUrl, getControllerEventUrl, getEventFormFields, getEventFormFields, getEventFormTag, getEventFormTag, getEventUrl, getEventUrl, getEventUrl, getEventUrl, getFormName, getFormSubmitUrl, getFormSubmitUrl, getGlobalEventUrl, getGlobalEventUrl, getPageUrl, getPageUrl, getPageUrl, getPageUrl, getUiParent, peekEvent, renderJSP, routeEvent, routeEvent, serverSideInclude, serverSideInclude, setActive
Methods inherited from class com.filenet.wcm.toolkit.server.base.GlobalEventModule
subscribeGlobalEvent
Methods inherited from class com.filenet.wcm.toolkit.server.base.WcmModule
addChild, addChild, addChild, cleanup, debugTrace, getClassProperty, getClassProperty, getClassPropertyKeys, getConfiguration, getController, getDataStore, getModuleProperty, getModuleProperty, getModuleProperty, getModuleProperty, getModulePropertyKeys, getName, getParent, getWindowProperty, getWindowProperty, persist, queryDataProvider, setClassProperty, setClassProperty, setController, setModuleProperty, setModuleProperty, setName, setParent, setPortletParent, setWindowProperty
Methods inherited from class com.filenet.wcm.toolkit.server.base.WcmDpContainer
addDataProvider, addDataProvider
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.filenet.wcm.toolkit.server.base.WcmModuleInterface
addDataProvider, cleanup, getDataStore, getModuleProperty, getName, getParent, persist, queryDataProvider, setController, setModuleProperty, setName, setParent

Field Detail

COMMAND_CHECKOUT

  1. public static final int COMMAND_CHECKOUT
See Also:

COMMAND_CANCELCHECKOUT

  1. public static final int COMMAND_CANCELCHECKOUT
See Also:

COMMAND_FILE

  1. public static final int COMMAND_FILE
See Also:

COMMAND_DELETE

  1. public static final int COMMAND_DELETE
See Also:

COMMAND_ASSIGNSECURITYPOLICY

  1. public static final int COMMAND_ASSIGNSECURITYPOLICY
See Also:

COMMAND_MOVE

  1. public static final int COMMAND_MOVE
See Also:

Constructor Detail

WcmBatchAction

  1. public WcmBatchAction()

Method Detail

initialize

  1. public void initialize()
  2. throws java.lang.Exception
Description copied from class: com.filenet.wcm.toolkit.server.base.WcmModule
Called by WcmController when the module is registered, and has access to the data store. Do "constructor" types of things here.
Specified by:
initialize in interface com.filenet.wcm.toolkit.server.base.WcmModuleInterface
Overrides:
Throws:
java.lang.Exception

onStartPage

  1. public void onStartPage(javax.servlet.http.HttpServletRequest request,
  2. javax.servlet.http.HttpServletResponse response)
  3. throws java.lang.Exception
Description copied from class: com.filenet.wcm.toolkit.server.base.GlobalEventModule
Event that is fired for all UI modules before the page is rendered
Specified by:
onStartPage in interface com.filenet.wcm.toolkit.server.base.WcmUiModuleInterface
Overrides:
onStartPage in class com.filenet.wcm.toolkit.server.base.GlobalEventModule
Parameters:
request - HttpServletRequest
response - HttpServletResponse
Throws:
java.lang.Exception - If any errors occured

checkParam

  1. protected boolean checkParam(java.lang.Object o)
  2. throws java.lang.Exception
Make sure object is not null and has some value. For now it only works with String type.
Parameters:
o - object key name.
Returns:
boolean Return true if object is a string and not null.
Throws:
java.lang.Exception - If there are problems retrieving data or with an invalid parameter.