com.sapportals.portal.appintegrator.layer
Class URLTemplateProcessLayer

java.lang.Object
  |
  +--com.sapportals.portal.appintegrator.layer.AbstractIntegrationLayer
        |
        +--com.sapportals.portal.appintegrator.layer.URLTemplateProcessLayer
All Implemented Interfaces:
IIntegrationLayer
Direct Known Subclasses:
ConnectionStringLayer

public class URLTemplateProcessLayer
extends AbstractIntegrationLayer

Copyright: Copyright (c) 2002 by SAP AG Description

Version:
$Revision: #1 $.

Field Summary
protected  java.lang.String mm_URL
          every application needs an URL (URL template)
 
Fields inherited from interface com.sapportals.portal.appintegrator.layer.IIntegrationLayer
PROPNAME_MANDATORY_PARAMETERS, PROPNAME_NEXT_LAYER, PROPNAME_OPTIONAL_PARAMETERS
 
Constructor Summary
URLTemplateProcessLayer()
           
 
Method Summary
 void epilog()
          This method is used to provide the result of this layer for the subsequent layers and it has to be called after prolog and processLayer() and before render().
 void processLayer()
          This method is used to do the real job of this layer (ie.
 void prolog()
          This method is used to retrieve the input parameters for this layer and it is called before processLayer(), epilog and render().
 
Methods inherited from class com.sapportals.portal.appintegrator.layer.AbstractIntegrationLayer
assembleParameters, getBooleanParameter, getConveyor, getException, getLayerId, getLayerNo, getLongParameter, getMandatoryParameters, getNextLayer, getNode, getOptionalParameters, getParameter, getRequest, getSAPWPActiveCookie, getStringParameter, getValidValues, hasException, init, isDebugMode, isEmbedded, missingParameters, processTemplate, render, setException, setParameter, setParameterForNextLayer, stopProcessing, swapOutCurrentLayer
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

mm_URL

protected java.lang.String mm_URL
every application needs an URL (URL template)
Constructor Detail

URLTemplateProcessLayer

public URLTemplateProcessLayer()
Method Detail

prolog

public void prolog()
Description copied from interface: IIntegrationLayer
This method is used to retrieve the input parameters for this layer and it is called before processLayer(), epilog and render().
Overrides:
prolog in class AbstractIntegrationLayer
See Also:
IIntegrationLayer.prolog()

epilog

public void epilog()
Description copied from interface: IIntegrationLayer
This method is used to provide the result of this layer for the subsequent layers and it has to be called after prolog and processLayer() and before render().
Overrides:
epilog in class AbstractIntegrationLayer
See Also:
IIntegrationLayer.epilog()

processLayer

public void processLayer()
Description copied from interface: IIntegrationLayer
This method is used to do the real job of this layer (ie. URL computation etc). It is called after epilog and before render() and processLayer().
Overrides:
processLayer in class AbstractIntegrationLayer
See Also:
IIntegrationLayer.processLayer()