Class StaticMessageChannelSecurity
java.lang.Object
net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
org.opensaml.messaging.handler.AbstractMessageHandler
org.opensaml.messaging.handler.impl.AbstractMessageChannelSecurity
org.opensaml.messaging.handler.impl.StaticMessageChannelSecurity
- All Implemented Interfaces:
Component
,DestructableComponent
,InitializableComponent
,MessageHandler
Message handler which populates a
MessageChannelSecurityContext
based on static configuration flags.-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate boolean
Message channel confidentiality flag.private boolean
Message channel integrity flag. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
doInvoke
(MessageContext messageContext) Performs the handler logic.boolean
Get whether message channel confidentiality is active.boolean
Get whether message channel integrity is active.void
setConfidentialityActive
(boolean flag) Set whether message channel confidentiality is active.void
setIntegrityActive
(boolean flag) Set whether message channel integrity is active.Methods inherited from class org.opensaml.messaging.handler.impl.AbstractMessageChannelSecurity
doPreInvoke, getParentContext, setParentContextLookupStrategy
Methods inherited from class org.opensaml.messaging.handler.AbstractMessageHandler
doPostInvoke, doPostInvoke, getActivationCondition, getLogPrefix, invoke, setActivationCondition
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, doDestroy, doInitialize, initialize, isDestroyed, isInitialized
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.shibboleth.utilities.java.support.component.InitializableComponent
initialize, isInitialized
-
Field Details
-
confidentialityActive
private boolean confidentialityActiveMessage channel confidentiality flag. -
integrityActive
private boolean integrityActiveMessage channel integrity flag.
-
-
Constructor Details
-
StaticMessageChannelSecurity
public StaticMessageChannelSecurity()
-
-
Method Details
-
isConfidentialityActive
public boolean isConfidentialityActive()Get whether message channel confidentiality is active.- Returns:
- Returns the confidentialityActive.
-
setConfidentialityActive
public void setConfidentialityActive(boolean flag) Set whether message channel confidentiality is active.- Parameters:
flag
- The confidentialityActive to set.
-
isIntegrityActive
public boolean isIntegrityActive()Get whether message channel integrity is active.- Returns:
- Returns the integrityActive.
-
setIntegrityActive
public void setIntegrityActive(boolean flag) Set whether message channel integrity is active.- Parameters:
flag
- The integrityActive to set.
-
doInvoke
Performs the handler logic.- Specified by:
doInvoke
in classAbstractMessageHandler
- Parameters:
messageContext
- the message context on which to invoke the handler
-