com.sun.identity.authentication.spi
クラス PagePropertiesCallback

java.lang.Object
  上位を拡張 com.sun.identity.authentication.spi.PagePropertiesCallback

public class PagePropertiesCallback
extends Object

PagePropertiesCallback class implements Callback and used for exchanging all UI related attributes information such as template name, errorState to indicate whether a template is an error page, page header, image name , page timeout value, name of module.


コンストラクタの概要
PagePropertiesCallback(String name, String header, String image, int timeOut, String templateName, boolean error, String page_state)
          Creates a PagePropertiesCallback for a given module name, header string, page image, page time out, JSP template name, error state and page state.
 
メソッドの概要
 List getAttribute()
          Returns the list of authentication module data store specific attributes.
 boolean getErrorState()
          Returns the authentication module error state.
 String getHeader()
          Returns the authentication module header string display.
 String getImage()
          Returns the authentication module display page image.
 String getModuleName()
          Returns the authentication module name.
 String getPageState()
          Returns the authentication module display page state.
 List getRequire()
          Returns the list of authentication module display attributes which are required to be entered by the end user.
 String getTemplateName()
          Returns the authentication module display page template name.
 int getTimeOutValue()
          Returns the authentication module display page time out value.
 void setAttribute(List attribute)
          Sets the list of authentication module data store specific attributes.
 void setHeader(String header)
          Sets the authentication module header string display.
 void setPageState(String page_state)
          Sets the authentication module display page state.
 void setRequire(List require)
          Sets the list of authentication module display attributes which are required to be entered by the end user.
 

コンストラクタの詳細

PagePropertiesCallback

public PagePropertiesCallback(String name,
                              String header,
                              String image,
                              int timeOut,
                              String templateName,
                              boolean error,
                              String page_state)
Creates a PagePropertiesCallback for a given module name, header string, page image, page time out, JSP template name, error state and page state.

パラメータ:
name - Name of the authentication module.
header - Header string for the authentication module display page.
image - Image for the authentication module display page.
timeOut - Time out value for the authentication module display page.
templateName - JSP page name for the authentication module display.
error - Error state for the authentication module.
page_state - State of the authentication module display page.
メソッドの詳細

getImage

public String getImage()
Returns the authentication module display page image.

戻り値:
the image for the authentication module display page.

getTimeOutValue

public int getTimeOutValue()
Returns the authentication module display page time out value.

戻り値:
the time out value for the authentication module display page.

getPageState

public String getPageState()
Returns the authentication module display page state.

戻り値:
the state for the authentication module display page.

getTemplateName

public String getTemplateName()
Returns the authentication module display page template name.

戻り値:
the JSP page template of the authentication module display.

getModuleName

public String getModuleName()
Returns the authentication module name.

戻り値:
the name of the authentication module.

getHeader

public String getHeader()
Returns the authentication module header string display.

戻り値:
the header string display for the authentication module page.

getErrorState

public boolean getErrorState()
Returns the authentication module error state.

戻り値:
the error state for the authentication module page.

getAttribute

public List getAttribute()
Returns the list of authentication module data store specific attributes.

戻り値:
the list of authentication module data store specific attributes.

getRequire

public List getRequire()
Returns the list of authentication module display attributes which are required to be entered by the end user.

戻り値:
the list of authentication module display attributes which are required to be entered by the end user.

setHeader

public void setHeader(String header)
Sets the authentication module header string display.

パラメータ:
header - Header string display for the authentication module page.

setAttribute

public void setAttribute(List attribute)
Sets the list of authentication module data store specific attributes.

パラメータ:
attribute - the list of authentication module data store specific attributes.

setRequire

public void setRequire(List require)
Sets the list of authentication module display attributes which are required to be entered by the end user.

パラメータ:
require - the list of authentication module display attributes which are required to be entered by the end user.

setPageState

public void setPageState(String page_state)
Sets the authentication module display page state.

パラメータ:
page_state - the state for the authentication module display page.