Package org.onosproject.netconf.rpc
Class RpcType
- java.lang.Object
-
- org.onosproject.netconf.rpc.RpcType
-
public class RpcType extends java.lang.ObjectJava class for rpcType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="rpcType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:ietf:params:xml:ns:netconf:base:1.0}rpcOperation"/> </sequence> <attribute name="message-id" use="required" type="{urn:ietf:params:xml:ns:netconf:base:1.0}messageIdType" /> <anyAttribute processContents='lax'/> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringmessageIdprotected RpcOperationTyperpcOperation
-
Constructor Summary
Constructors Constructor Description RpcType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetMessageId()Gets the value of the messageId property.java.util.Map<javax.xml.namespace.QName,java.lang.String>getOtherAttributes()Gets a map that contains attributes that aren't bound to any typed property on this class.RpcOperationTypegetRpcOperation()Gets the value of the rpcOperation property.voidsetMessageId(java.lang.String value)Sets the value of the messageId property.voidsetRpcOperation(RpcOperationType value)Sets the value of the rpcOperation property.
-
-
-
Field Detail
-
rpcOperation
protected RpcOperationType rpcOperation
-
messageId
protected java.lang.String messageId
-
-
Method Detail
-
getRpcOperation
public RpcOperationType getRpcOperation()
Gets the value of the rpcOperation property.- Returns:
- possible object is
RpcOperationType
-
setRpcOperation
public void setRpcOperation(RpcOperationType value)
Sets the value of the rpcOperation property.- Parameters:
value- allowed object isRpcOperationType
-
getMessageId
public java.lang.String getMessageId()
Gets the value of the messageId property.- Returns:
- possible object is
String
-
setMessageId
public void setMessageId(java.lang.String value)
Sets the value of the messageId property.- Parameters:
value- allowed object isString
-
getOtherAttributes
public java.util.Map<javax.xml.namespace.QName,java.lang.String> getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.
- Returns:
- always non-null
-
-