com.ibm.eNetwork.security.sso.CMRequest
ZIETransは、要求情報をこのオブジェクトで渡すことにより、信任状を要求します。メンバーおよびメソッドは以下のとおりです。
メンバー:
- ID (ホスト ID またはネットワーク ID)
- ホスト・アプリケーション ID
- ホスト宛先アドレス
- 認証タイプ
- HTTP サーブレット要求オブジェクト
メソッド:
- 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 に使用可能な値は以下のとおりです。
上記の値は、com.ibm.eNetwork.security.sso.SSOConstants クラスに定義されています。これらの値を使用する場合は、このクラスをインポートする必要があります。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;
- public void setAuthType(int authType)
- authtype に使用可能な値は以下のとおりです。
上記の値は、com.ibm.eNetwork.security.sso.SSOConstants クラスに定義されています。これらの値を使用する場合は、このクラスをインポートする必要があります。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;
- public HttpServletRequest getHttpRequestObject()
- public void setHttpRequestObject(HttpServletRequest httpRequest)