Interface semper.BApp.FrmWrk.BAppConfigEntry
All Packages Class Hierarchy This Package Previous Next Index
Interface semper.BApp.FrmWrk.BAppConfigEntry
- public interface BAppConfigEntry
- extends Object
This is the interface of a SEMPER Business Application Configuration Entry.
The Business Application configuration entries are used by the business
applications to specify response reactions on a service. Example: For a specific
semper request (say payment for a product on sale) the configuration entry
encupsulates all the necessary information (URL, ..) for the user to receive the
product after she/he has payed. This interface contains the EUROCOM Business
Application Configuration Data.
- Version:
- $Revision: 1.3 $ $Date: 1996/07/22 17:24:25 $
- Author:
- Dimitrios Livas
- See Also:
- BusinessApp
-
getFailRespHTML()
- Return the HTML code to be send to the user upon failure.
-
getSuccRespHTML()
- Return the HTML code to be send to the user upon success.
-
setFailRespURL(String)
- Sets the URL to be used if the service has failed.
-
setSuccRespURL(String)
- Sets the URL to be used if the service has succeded.
setSuccRespURL
public abstract void setSuccRespURL(String url)
- Sets the URL to be used if the service has succeded.
- Parameters:
- url - the URL to be used
setFailRespURL
public abstract void setFailRespURL(String url)
- Sets the URL to be used if the service has failed.
- Parameters:
- url - the URL to be used
getSuccRespHTML
public abstract String getSuccRespHTML()
- Return the HTML code to be send to the user upon success.
- Returns:
- the HTML code to be send to the user WWW browser upon success
getFailRespHTML
public abstract String getFailRespHTML()
- Return the HTML code to be send to the user upon failure.
- Returns:
- the HTML code to be send to the user WWW browser upon failure
All Packages Class Hierarchy This Package Previous Next Index