Package org.onosproject.netconf
Interface NetconfProxyMessage
-
public interface NetconfProxyMessageInterface representing a NETCONF proxy message.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classNetconfProxyMessage.SubjectType
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>arguments()Returns the arguments of the intended method call in order.org.onosproject.net.DeviceIddeviceId()Returns the device id of the device to which the message is intended.org.onosproject.cluster.NodeIdsenderId()Returns the node id of proxymessage sender.NetconfProxyMessage.SubjectTypesubjectType()Returns the subject of the message.
-
-
-
Method Detail
-
subjectType
NetconfProxyMessage.SubjectType subjectType()
Returns the subject of the message.- Returns:
- subject in enum subject type
-
deviceId
org.onosproject.net.DeviceId deviceId()
Returns the device id of the device to which the message is intended.- Returns:
- device id
-
arguments
java.util.List<java.lang.String> arguments()
Returns the arguments of the intended method call in order.- Returns:
- arguments
-
senderId
org.onosproject.cluster.NodeId senderId()
Returns the node id of proxymessage sender.- Returns:
- NodeId
-
-