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


public interface EncryptionReferenceConf

Represents reference to EncryptedDataConf or EncryptedKeyConf. It is used by EncryptedKeyConf and ReferenceListConf. Only local references (i.e., reference starts with '#') are supported.

Since:
4.6
See Also:
EncryptedKeyConf, EncryptedDataConf, ReferenceListConf
Component:
Security-Providers

Method Summary
 java.lang.String getRefUri()
          Returns reference URI.
 void setRefUri(java.lang.String refUri)
          Sets URI of referenced element.
 

Method Detail

setRefUri

public void setRefUri(java.lang.String refUri)
Sets URI of referenced element. The reference must be relative (starting with #); it usually points to value defined by id defined by ElementConf. Typical assigned value is: "#"+myEncryptedData.getWsuId().

Parameters:
refUri - URI of referenced object
See Also:
getRefUri()

getRefUri

public java.lang.String getRefUri()
Returns reference URI.

Returns:
reference URI
See Also:
setRefUri(java.lang.String)