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(java.lang.String name)AgentConfiggetConfig()java.lang.StringgetName()TransportContext.DiscardablesetAttribute(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)
 
 - 
 
 -