Class AbstractSecuredElementSecurityEvent
- java.lang.Object
-
- org.apache.xml.security.stax.securityEvent.SecurityEvent
-
- org.apache.xml.security.stax.securityEvent.AbstractElementSecurityEvent
-
- org.apache.xml.security.stax.securityEvent.AbstractSecuredElementSecurityEvent
-
- Direct Known Subclasses:
ContentEncryptedElementSecurityEvent
,EncryptedElementSecurityEvent
,SignedElementSecurityEvent
public abstract class AbstractSecuredElementSecurityEvent extends AbstractElementSecurityEvent
- Version:
- $Revision: $ $Date: $
- Author:
- $Author: $
-
-
Constructor Summary
Constructors Constructor Description AbstractSecuredElementSecurityEvent(SecurityEventConstants.Event securityEventType, SecurityToken securityToken, List<XMLSecurityConstants.ContentType> protectionOrder)
AbstractSecuredElementSecurityEvent(SecurityEventConstants.Event securityEventType, SecurityToken securityToken, List<XMLSecurityConstants.ContentType> protectionOrder, boolean signed, boolean encrypted)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<XMLSecurityConstants.ContentType>
getProtectionOrder()
SecurityToken
getSecurityToken()
boolean
isAttachment()
boolean
isEncrypted()
boolean
isSigned()
void
setAttachment(boolean attachment)
void
setEncrypted(boolean encrypted)
void
setProtectionOrder(List<XMLSecurityConstants.ContentType> protectionOrder)
void
setSecurityToken(InboundSecurityToken securityToken)
void
setSigned(boolean signed)
-
Methods inherited from class org.apache.xml.security.stax.securityEvent.AbstractElementSecurityEvent
getElementPath, getXmlSecEvent, setElementPath, setXmlSecEvent
-
Methods inherited from class org.apache.xml.security.stax.securityEvent.SecurityEvent
getCorrelationID, getSecurityEventType, setCorrelationID
-
-
-
-
Constructor Detail
-
AbstractSecuredElementSecurityEvent
public AbstractSecuredElementSecurityEvent(SecurityEventConstants.Event securityEventType, SecurityToken securityToken, List<XMLSecurityConstants.ContentType> protectionOrder)
-
AbstractSecuredElementSecurityEvent
public AbstractSecuredElementSecurityEvent(SecurityEventConstants.Event securityEventType, SecurityToken securityToken, List<XMLSecurityConstants.ContentType> protectionOrder, boolean signed, boolean encrypted)
-
-
Method Detail
-
getSecurityToken
public SecurityToken getSecurityToken()
-
setSecurityToken
public void setSecurityToken(InboundSecurityToken securityToken)
-
isSigned
public boolean isSigned()
-
setSigned
public void setSigned(boolean signed)
-
getProtectionOrder
public List<XMLSecurityConstants.ContentType> getProtectionOrder()
-
setProtectionOrder
public void setProtectionOrder(List<XMLSecurityConstants.ContentType> protectionOrder)
-
isEncrypted
public boolean isEncrypted()
-
setEncrypted
public void setEncrypted(boolean encrypted)
-
isAttachment
public boolean isAttachment()
-
setAttachment
public void setAttachment(boolean attachment)
-
-