Package com.day.cq.replication
Interface TransportContext
-
public interface TransportContextTheTransportContextis 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 interfaceTransportContext.Discardable
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TransportContext.DiscardablegetAttribute(String name)AgentConfiggetConfig()StringgetName()TransportContext.DiscardablesetAttribute(String name, TransportContext.Discardable attr)
-
-
-
Method Detail
-
getName
String getName()
-
getConfig
AgentConfig getConfig()
-
getAttribute
TransportContext.Discardable getAttribute(String name)
-
setAttribute
TransportContext.Discardable setAttribute(String name, TransportContext.Discardable attr)
-
-