Interface CancelTarget
-
- All Known Implementing Classes:
CancelTargetImpl,CancelTargetImpl
public interface CancelTargetDefines Binding for requesting security tokens to be cancelled.- Author:
- WS-Trust Implementation Team
-
-
Field Summary
Fields Modifier and Type Field Description static StringCUSTOM_TARGET_TYPEstatic StringSTR_TARGET_TYPEConstants denoting type of Cancel Target
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetAny()Gets the value of the any property.SecurityTokenReferencegetSecurityTokenReference()Get the STR for the Token to be CancelledStringgetTargetType()Get the type of the Cancel Target information itemTokengetToken()Get the token to be CancelledvoidsetAny(Object value)Sets the value of the any property.voidsetSecurityTokenReference(SecurityTokenReference ref)Set the STR for the Token to be CancelledvoidsetToken(Token token)Set the token to be Cancelled
-
-
-
Field Detail
-
STR_TARGET_TYPE
static final String STR_TARGET_TYPE
Constants denoting type of Cancel Target- See Also:
- Constant Field Values
-
CUSTOM_TARGET_TYPE
static final String CUSTOM_TARGET_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTargetType
String getTargetType()
Get the type of the Cancel Target information item
-
setAny
void setAny(Object value)
Sets the value of the any property.- Parameters:
value- allowed object isObject
-
setSecurityTokenReference
void setSecurityTokenReference(SecurityTokenReference ref)
Set the STR for the Token to be Cancelled
-
getSecurityTokenReference
SecurityTokenReference getSecurityTokenReference()
Get the STR for the Token to be Cancelled
-
setToken
void setToken(Token token)
Set the token to be Cancelled
-
getToken
Token getToken()
Get the token to be Cancelled
-
-