Interface SecurityTokenReference
-
- All Superinterfaces:
Token
- All Known Implementing Classes:
SecurityTokenReference
public interface SecurityTokenReference extends Token
- Author:
- [email protected]
-
-
Field Summary
Fields Modifier and Type Field Description static String
DIRECT_REFERENCE
static String
KEYIDENTIFIER
static String
REFERENCE
static String
X509DATA_ISSUERSERIAL
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Reference
getReference()
String
getTokenType()
get the WSS 1.1 Token type for SecurityTokenRerferencevoid
setReference(Reference ref)
Sets the appropriate reference type for STR - like EkyIndentifier, Direct reference etcvoid
setTokenType(String tokenType)
set the WSS 1.1 Token type for SecurityTokenRerference
-
-
-
Field Detail
-
KEYIDENTIFIER
static final String KEYIDENTIFIER
- See Also:
- Constant Field Values
-
REFERENCE
static final String REFERENCE
- See Also:
- Constant Field Values
-
X509DATA_ISSUERSERIAL
static final String X509DATA_ISSUERSERIAL
- See Also:
- Constant Field Values
-
DIRECT_REFERENCE
static final String DIRECT_REFERENCE
- See Also:
- Constant Field Values
-
-
Method Detail
-
setReference
void setReference(Reference ref)
Sets the appropriate reference type for STR - like EkyIndentifier, Direct reference etc- Parameters:
ref
- The reference type used in STR
-
getReference
Reference getReference()
- Returns:
- The Reference used inside STR
-
setTokenType
void setTokenType(String tokenType)
set the WSS 1.1 Token type for SecurityTokenRerference- Parameters:
tokenType
- the value of TokenType attribute used in WSS 1.1
-
getTokenType
String getTokenType()
get the WSS 1.1 Token type for SecurityTokenRerference- Returns:
- the value of TokenType attribute used in WSS 1.1
-
-