Uses of Class
org.apache.axis2.context.AbstractContext
-
Packages that use AbstractContext Package Description org.apache.axis2.clustering.state org.apache.axis2.context org.apache.axis2.scripting -
-
Uses of AbstractContext in org.apache.axis2.clustering.state
Methods in org.apache.axis2.clustering.state with parameters of type AbstractContext Modifier and Type Method Description void
ClusteringContextListener. contextCreated(AbstractContext context)
void
ClusteringContextListener. contextRemoved(AbstractContext context)
static StateClusteringCommandCollection
StateClusteringCommandFactory. getCommandCollection(AbstractContext[] contexts, Map excludedReplicationPatterns)
static StateClusteringCommand
StateClusteringCommandFactory. getRemoveCommand(AbstractContext abstractContext)
static StateClusteringCommand
StateClusteringCommandFactory. getUpdateCommand(AbstractContext context, String[] propertyNames)
static StateClusteringCommand
StateClusteringCommandFactory. getUpdateCommand(AbstractContext context, Map excludedPropertyPatterns, boolean includeAllProperties)
boolean
DefaultStateManager. isContextClusterable(AbstractContext context)
boolean
StateManager. isContextClusterable(AbstractContext context)
This is a check to see whether the properties in an instance ofAbstractContext
should be replicated.void
DefaultStateManager. removeContext(AbstractContext context)
void
StateManager. removeContext(AbstractContext context)
This method is called whenAbstractContext
is removed from the systemstatic void
Replicator. replicate(AbstractContext abstractContext)
Replicate all serializable properties stored in the givenabstractContext
.static void
Replicator. replicate(AbstractContext abstractContext, String[] propertyNames)
Replicate all the properties given inpropertyNames
in the specifiedabstractContext
void
DefaultStateManager. updateContext(AbstractContext context)
void
DefaultStateManager. updateContext(AbstractContext context, String[] propertyNames)
void
StateManager. updateContext(AbstractContext context)
This method is called when properties in anAbstractContext
are updated.void
StateManager. updateContext(AbstractContext context, String[] propertyNames)
This method is called when one need to update/replicate only certains properties in the specifiedcontext
void
DefaultStateManager. updateContexts(AbstractContext[] contexts)
void
StateManager. updateContexts(AbstractContext[] contexts)
This method is called when properties in a collection ofAbstractContext
s are updated.void
PropertyUpdater. updateProperties(AbstractContext abstractContext)
-
Uses of AbstractContext in org.apache.axis2.context
Subclasses of AbstractContext in org.apache.axis2.context Modifier and Type Class Description class
ConfigurationContext
Axis2 states are held in two information models, called description hierarchy and context hierarchy.class
MessageContext
Axis2 states are held in two information models, called description hierarchy and context hierarchy.class
OperationContext
An OperationContext represents a running "instance" of an operation, which is represented by an AxisOperation object.class
ServiceContext
Well this is never clearly defined, what it does or the life-cycle.class
ServiceGroupContext
class
SessionContext
All the engine components are stateless across the executions and all the states should be kept in the Contexts, there are three context Global, Session and Message.Fields in org.apache.axis2.context declared as AbstractContext Modifier and Type Field Description protected AbstractContext
AbstractContext. parent
Methods in org.apache.axis2.context that return AbstractContext Modifier and Type Method Description AbstractContext
AbstractContext. getParent()
Methods in org.apache.axis2.context with parameters of type AbstractContext Modifier and Type Method Description void
ContextListener. contextCreated(AbstractContext context)
A context has been addedvoid
ContextListener. contextRemoved(AbstractContext context)
A context has been removedboolean
AbstractContext. isAncestor(AbstractContext context)
void
AbstractContext. setParent(AbstractContext context)
Constructors in org.apache.axis2.context with parameters of type AbstractContext Constructor Description AbstractContext(AbstractContext parent)
SessionContext(AbstractContext parent)
-
Uses of AbstractContext in org.apache.axis2.scripting
Subclasses of AbstractContext in org.apache.axis2.scripting Modifier and Type Class Description class
ScriptMessageContext
ScriptMessageContext decorates the Axis2 MessageContext adding methods to use the message payload XML in a way natural to the scripting language.
-