|
SAP NetWeaver 7.30 Enterprise Portal (SP03) | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
See:
Description
| Interface Summary | |
|---|---|
| IObjectTypeHandler | Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com). |
| Class Summary | |
|---|---|
| AbstractObjectTypeHandler | Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com). |
| IViewHandler | Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com). |
| LayoutHandler | Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com). |
| PageHandler | Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com). |
| ProducerPortalHandler | Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com). |
| SystemHandler | Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com). |
Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com).
Provides interface and classes that enable you to create a PCM wizard handler, which is the class that creates the object at the end of the PCM wizard.
This package supplies handlers for standard semantic objects, such as iView and page. Developers can extend them, to add functionality, or create new handlers for new semantic objects.
Each standard handler, which must implement IObjectTypeHandler, creates an object descriptor based on its type and performs the save
action for the new object.
The abstract class AbstractObjectTypeHandler provides
default implementation for the save action.
public Class MyHandler extends AbstractObjectTypeHandler implements IService {
public static final String KEY = "com.sap.portal.admin.mywizard.handlers.myHandler";
public Object createObjectDescriptor(String targetId, CreateMethod method,
IWizardContext context) throws DescriptorNotCreatedException {
IObjectsmanager manager = (IiViews)PortalRuntime.getRuntimeResources()
.getService(IMyProviderManager.KEY);
return manager.instantiateDescriptor(method,targetId,context.getRequest().getUser());
}
}
portalapp.xml: Includes the following property element in the component profile:
<component-profile>
<property name="handlerServiceKey" value="com.sap.portal.admin.mywizard.handlers.myHandler"/>
</component-profile>
|
SAP NetWeaver 7.30 Enterprise Portal (SP03) | |||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||