Package com.day.cq.replication
Interface TransportContext
-
public interface TransportContext
TheTransportContext
is used as context when replicating content. Usually a context is created for each agent / transport handler pair. The handler can use the context to store config dependant states and can assume a new context for changed configuration.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
TransportContext.Discardable
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TransportContext.Discardable
getAttribute(java.lang.String name)
AgentConfig
getConfig()
java.lang.String
getName()
TransportContext.Discardable
setAttribute(java.lang.String name, TransportContext.Discardable attr)
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getConfig
AgentConfig getConfig()
-
getAttribute
TransportContext.Discardable getAttribute(java.lang.String name)
-
setAttribute
TransportContext.Discardable setAttribute(java.lang.String name, TransportContext.Discardable attr)
-
-