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

Packages that use Capability
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.messages Contains classes used by the system and that serve to define the XML messages of Netconf protocol. 
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 Capability in com.vhosting.netconf
 

Methods in com.vhosting.netconf that return Capability
 Capability SubtreeFilter.Filter.getCapability()
          Get the capability they belong to the filtered data.
 Capability Config.getCapability()
          Get the capability that owns this configuration.
 

Methods in com.vhosting.netconf with parameters of type Capability
 SubtreeFilter.Filter SubtreeFilter.addFilter(Capability cap)
          Add a filter to the subtreefilter.
 void XPathSelections.addSelection(java.lang.String xpath, Capability cap)
          Adds an xpath selection.
static Config EditConfig.createConfig(Capability cap, java.lang.String config, java.lang.String... values)
          Create an instance of Config for use with the operation.
 

Constructors in com.vhosting.netconf with parameters of type Capability
Config(Anyxml anyxml, Capability cap, java.lang.String config, java.lang.String... values)
          Create the instance of the class with which to provide instructions for changing the configuration data.
 

Uses of Capability in com.vhosting.netconf.frame
 

Methods in com.vhosting.netconf.frame with parameters of type Capability
static Anyxml IdentityCreator.createAnyxml(Capability cap, java.lang.String name)
          This is a convenience method that creates an Anyxml with the namespace of the specified Capability.
static Container IdentityCreator.createContainer(Capability cap, java.lang.String name)
          This is a convenience method that creates a Container with the namespace of the specified Capability.
static ContainerReference IdentityCreator.createContainerReference(Capability cap, java.lang.String name)
          This is a convenience method that creates a Container reference with the namespace of the specified Capability.
static Attribute Attribute.createDefaultNamespaceAttribute(Capability cap)
          Convenience methods to create an attribute declaring the default namespace definition.
static Identity IdentityCreator.createIdentity(Capability cap, java.lang.String name)
          This is a convenience method that creates an identity with the namespace of the specified Capability.
static Leaf IdentityCreator.createLeaf(Capability cap, java.lang.String name)
          This is a convenience method that creates a leaf with the namespace of the specified Capability.
static LeafList IdentityCreator.createLeafList(Capability cap, java.lang.String name)
          This is a convenience method that creates a leaf list with the namespace of the specified Capability.
static List IdentityCreator.createList(Capability cap, java.lang.String name)
          This is a convenience method that creates a list with the namespace of the specified Capability.
static ListReference IdentityCreator.createListReference(Capability cap, java.lang.String name)
          This is a convenience method that creates a list reference with the namespace of the specified Capability.
 

Constructors in com.vhosting.netconf.frame with parameters of type Capability
Anyxml(Capability cap, java.lang.String name)
          Create an Anyxml element.
Attribute(Capability cap, java.lang.String name, java.lang.String value)
          Create an attribute with the namespace of the specified capability.
Container(Capability cap, java.lang.String name)
          Create a Container.
Data(Capability cap)
          Create a Data structure for the specified capability.
Identity(Capability cap, java.lang.String name)
          Create an identity for a specified capability.
IdentityCreator(Capability cap, java.lang.String name)
          Use this constructor when you decide to create a subclass.
List(Capability cap, java.lang.String name)
          Create a list.
List(Capability cap, java.lang.String name, long min)
          Create a list.
List(Capability cap, java.lang.String name, long min, long max)
          Create a list.
ListReference(Capability cap, java.lang.String name)
          Create a list reference without limits.
ListReference(Capability cap, java.lang.String name, long min)
          Create a list reference.
ListReference(Capability cap, java.lang.String name, long min, long max)
          Create a list reference.
Notification(Capability cap, java.lang.String name)
          Create an RPC notification with its name for the specified capability.
Rpc(Capability cap, java.lang.String name)
          Create an RPC request with the operation name for the specified capability.
 

Uses of Capability in com.vhosting.netconf.messages
 

Constructors in com.vhosting.netconf.messages with parameters of type Capability
HelloMsg(Capability[] caps)
          Build the client side Hello message.
 

Uses of Capability in com.vhosting.netconf.transport
 

Fields in com.vhosting.netconf.transport declared as Capability
static Capability Session.BASE_1_0
           
static Capability Session.CANDIDATE_1_0
           
static Capability Session.CONFIRMED_COMMIT_1_0
           
static Capability Session.INTERLEAVE_1_0
           
static Capability Session.NOTIFICATION_1_0
           
static Capability Session.PARTIAL_LOCK_1_0
           
static Capability Session.ROLLBACK_ON_ERROR_1_0
           
static Capability Session.STARTUP_1_0
           
static Capability Session.URL_1_0
           
static Capability Session.VALIDATE_1_0
           
static Capability Session.WRITABLE_RUNNING_1_0
           
static Capability Session.XPATH_1_0
           
 

Methods in com.vhosting.netconf.transport that return Capability
static Capability Session.findCapabilityByNamespaceURI(java.lang.String namespaceURI)
          Search for a capability that until now has been used by a namespace.
 Capability[] Session.getCapabilitiesOnServer()
          Get the capabilities that until now has been used and present on the server.
 

Uses of Capability in com.vhosting.netconf.yuma
 

Subclasses of Capability in com.vhosting.netconf.yuma
 class YANGCapability
          This class adds new attributes to a capability belonging to a YANG module.