com.ibm.bpe.api
Interface WebClientSetting

All Superinterfaces:
ClientSetting, java.io.Serializable

public interface WebClientSetting
extends ClientSetting

Interface for Web client settings. Web client settings extend the client settings with the ability to associate a set of usage patterns with a URL.

A sample web client setting follows:
<wpc:webClientSettings clientType="WPC Web Client">
 <wpc:jsp for="info" uri="approveInfo.jsp"/>
 <wpc:jsp for="input" uri="approveInput.jsp"/>
 <wpc:jsp for="output" uri="approveOutput.jsp"/>
 <wpc:jsp for="map" uri="approveMap.jsp"/>
</wpc:webClientSettings>

Since:
5.1

Method Summary
 JspLocation getJspLocation(JspUsageEnum usage)
          Returns the JSP location for a given usage pattern.
 
Methods inherited from interface com.ibm.bpe.api.ClientSetting
getClientType, getCustomSetting, getCustomSettingNames
 

Method Detail

getJspLocation

public JspLocation getJspLocation(JspUsageEnum usage)
Returns the JSP location for a given usage pattern. If the specified usage pattern is not specified, null is returned.

Parameters:
usage - The pattern for which a JSP location is to be returned.
Returns:
JspLocation - The JSP location that is associated with the specified usage pattern.