Uses of Class
com.vhosting.netconf.transport.Session

Packages that use Session
com.vhosting.netconf From this package you can access the basic operations of Netconf as Java classes. 
com.vhosting.netconf.frame Contains everything that is useful to the composition of RPC messages, sending them, receiving the corresponding Reply. 
com.vhosting.netconf.transport Contains everything related to the transport protocol of Netconf messages. 
com.vhosting.netconf.yuma Provides a minimal implementation of YUMA System Capability. 
 

Uses of Session in com.vhosting.netconf
 

Fields in com.vhosting.netconf declared as Session
protected  Session Operation.session
          The active session reference.
 

Constructors in com.vhosting.netconf with parameters of type Session
CloseSession(Session session)
          Create the close-session Netconf operation.
Commit(Session session)
          Create the commit Netconf operation.
CopyConfig(Session session, Datastore target, Datastore source)
          Create the copy-config Netconf operation.
CopyConfig(Session session, Datastore target, java.net.URL source)
          Create the copy-config Netconf operation.
CopyConfig(Session session, java.net.URL target, Datastore source)
          Create the copy-config Netconf operation.
CopyConfig(Session session, java.net.URL target, java.net.URL source)
          Create the copy-config Netconf operation.
CreateSubscription(Session session)
          Create the create-subscription Netconf operation.
DeleteConfig(Session session, Datastore target)
          Create the delete-config Netconf operation.
DeleteConfig(Session session, java.net.URL target)
          Create the delete-config Netconf operation.
DiscardChanges(Session session)
          Create the discard-changes Netconf operation.
EditConfig(Session session, Datastore target, Config config)
          Create the edit-config Netconf operation.
EditConfig(Session session, Datastore target, Config config, EditConfig.DefaultEditOperation defop)
          Create the edit-config Netconf operation.
EditConfig(Session session, Datastore target, java.net.URL config)
          Create the edit-config Netconf operation.
EditConfig(Session session, Datastore target, java.net.URL config, EditConfig.DefaultEditOperation defop)
          Create the edit-config Netconf operation.
Get(Session session)
          Create the get Netconf operation.
GetConfig(Session session, Datastore source)
          Create the get-config Netconf operation.
KillSession(Session session, int sesionId)
          Create the kill-session Netconf operation.
Lock(Session session, Datastore target)
          Create the lock Netconf operation.
Operation(Session session)
          Constructs an instance of the operation assigning it to an active session.
PartialLock(Session session, XPathSelections selections)
          Create the partial-lock Netconf operation.
PartialUnlock(Session session, int lockId)
          Create the partial-unlock Netconf operation.
Unlock(Session session, Datastore target)
          Create the unlock Netconf operation.
Validate(Session session, Datastore source)
          Create the validate Netconf operation.
Validate(Session session, java.net.URL source)
          Create the validate Netconf operation.
 

Uses of Session in com.vhosting.netconf.frame
 

Methods in com.vhosting.netconf.frame that return Session
 Session RpcHandler.getSession()
          Get the session for this connection.
 

Methods in com.vhosting.netconf.frame with parameters of type Session
 void Rpc.dumpRpcMessage(Session session, int messageId, java.io.OutputStream out)
          This method writes the RPC operation on the specified output stream as an XML Netconf message.
 

Uses of Session in com.vhosting.netconf.transport
 

Methods in com.vhosting.netconf.transport with parameters of type Session
 Capability.CapabilityParams Capability.getServerCapabilityParams(Session session)
          When the session is active, takes the server side parameters set for this capability.
 boolean Capability.isPresentOnServer(Session session)
          Check if the capability is present on the server.
 void Capability.unsetServerCapabilityPresence(Session session)
          Unset the presence of the capability on the server side.
 

Uses of Session in com.vhosting.netconf.yuma
 

Constructors in com.vhosting.netconf.yuma with parameters of type Session
Load(Session session, YANGCapability cap)
          Create the Load operation.
Load(Session session, YANGCapability cap, Date revision)
           
NoOp(Session session)
          Create the no-op operation.
Restart(Session session)
          Create the Restart operation.
Shutdown(Session session)
          Create the Shutdown operation.