org.systinet.wasp.security.ws.conf
Interface ElementConf

All Known Subinterfaces:
EncryptedDataConf, EncryptedKeyConf, EncryptedTypeConf, KeyInfoConf, MessageConf, OrderedElementConf, ReferenceConf, ReferenceListConf, SecurityTokenConf, SignatureConf, TransformConf

public interface ElementConf

Super interface of all WS-Security configuration interfaces that shall be referenced by identifier. The identifier value is represented as an XML attribute in the corresponding XML message. Such attribute is usually named wsu:Id, where the wsu is the namespace prefix for WS-Security utilities. Two id attributes within an XML document MUST NOT have the same value. As a result of this fact, two ElementConf instances within an WS-Security configuration MUST not have the same value.

Since:
4.6
Component:
Security-Providers

Method Summary
 java.lang.String getWsuId()
          Gets the value of element identifier.
 void setWsuId(java.lang.String wsuId)
          Sets the value of element identifier.
 

Method Detail

getWsuId

public java.lang.String getWsuId()
Gets the value of element identifier.

Returns:
identifier value
See Also:
setWsuId(String)

setWsuId

public void setWsuId(java.lang.String wsuId)
Sets the value of element identifier. Such value can be then referenced from other WS-Security configuration parts.

Parameters:
wsuId - identifier value
See Also:
getWsuId()