com.ibm.eNetwork.security.sso.CMRequest

ZIETransは、要求情報をこのオブジェクトで渡すことにより、信任状を要求します。メンバーおよびメソッドは以下のとおりです。

メンバー:

メソッド:

public CMRequest()
public CMRequest(String id, String applID, String hostAddr, int authType, HttpServletRequest httpRequest)
public String getID()
public void setID(String id)
public String getHostApplID()
public void setHostApplID(String applID)
public String getHostDestination()
public void setHostDestination(String hostAddr)
public int getAuthType()
authtype に使用可能な値は以下のとおりです。
 public static final int SSO_AUTHTYPE_ALL = 0xFFFF;
 public static final int SSO_AUTHTYPE_3270HOST = 0x0001;
 public static final int SSO_AUTHTYPE_5250HOST = 0x0002;
 public static final int SSO_AUTHTYPE_VTHOST   = 0x0004;
上記の値は、com.ibm.eNetwork.security.sso.SSOConstants クラスに定義されています。これらの値を使用する場合は、このクラスをインポートする必要があります。
public void setAuthType(int authType)
authtype に使用可能な値は以下のとおりです。
 public static final int SSO_AUTHTYPE_ALL = 0xFFFF;
 public static final int SSO_AUTHTYPE_3270HOST = 0x0001;
 public static final int SSO_AUTHTYPE_5250HOST = 0x0002;
 public static final int SSO_AUTHTYPE_VTHOST   = 0x0004;
上記の値は、com.ibm.eNetwork.security.sso.SSOConstants クラスに定義されています。これらの値を使用する場合は、このクラスをインポートする必要があります。
public HttpServletRequest getHttpRequestObject()
public void setHttpRequestObject(HttpServletRequest httpRequest)