Interface AaaServerState
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
- All Known Subinterfaces:
State
@Generated("mdsal-binding-generator")
public interface AaaServerState
extends org.opendaylight.yangtools.yang.binding.DataObject
Common operational state data for AAA servers
This class represents the following YANG schema fragment defined in module openconfig-aaa
grouping aaa-server-state {
leaf connection-opens {
type oc-yang:counter64;
}
leaf connection-closes {
type oc-yang:counter64;
}
leaf connection-aborts {
type oc-yang:counter64;
}
leaf connection-failures {
type oc-yang:counter64;
}
leaf connection-timeouts {
type oc-yang:counter64;
}
leaf messages-sent {
type oc-yang:counter64;
}
leaf messages-received {
type oc-yang:counter64;
}
leaf errors-received {
type oc-yang:counter64;
}
}
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QNameYANG identifier of the statement represented by this class. -
Method Summary
Modifier and TypeMethodDescriptionReturn connectionAborts, ornullif it is not present.Return connectionCloses, ornullif it is not present.Return connectionFailures, ornullif it is not present.Return connectionOpens, ornullif it is not present.Return connectionTimeouts, ornullif it is not present.Return errorsReceived, ornullif it is not present.Return messagesReceived, ornullif it is not present.Return messagesSent, ornullif it is not present.Class<? extends AaaServerState>default @NonNull Counter64Return connectionAborts, guaranteed to be non-null.default @NonNull Counter64Return connectionCloses, guaranteed to be non-null.default @NonNull Counter64Return connectionFailures, guaranteed to be non-null.default @NonNull Counter64Return connectionOpens, guaranteed to be non-null.default @NonNull Counter64Return connectionTimeouts, guaranteed to be non-null.default @NonNull Counter64Return errorsReceived, guaranteed to be non-null.default @NonNull Counter64Return messagesReceived, guaranteed to be non-null.default @NonNull Counter64Return messagesSent, guaranteed to be non-null.
-
Field Details
-
QNAME
static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAMEYANG identifier of the statement represented by this class.
-
-
Method Details
-
implementedInterface
Class<? extends AaaServerState> implementedInterface()- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getConnectionOpens
Counter64 getConnectionOpens()Return connectionOpens, ornullif it is not present.Number of new connection requests sent to the server, e.g. socket open- Returns:
Counter64connectionOpens, ornullif it is not present.
-
requireConnectionOpens
Return connectionOpens, guaranteed to be non-null.Number of new connection requests sent to the server, e.g. socket open- Returns:
Counter64connectionOpens, guaranteed to be non-null.- Throws:
NoSuchElementException- if connectionOpens is not present
-
getConnectionCloses
Counter64 getConnectionCloses()Return connectionCloses, ornullif it is not present.Number of connection close requests sent to the server, e.g. socket close- Returns:
Counter64connectionCloses, ornullif it is not present.
-
requireConnectionCloses
Return connectionCloses, guaranteed to be non-null.Number of connection close requests sent to the server, e.g. socket close- Returns:
Counter64connectionCloses, guaranteed to be non-null.- Throws:
NoSuchElementException- if connectionCloses is not present
-
getConnectionAborts
Counter64 getConnectionAborts()Return connectionAborts, ornullif it is not present.Number of aborted connections to the server. These do not include connections that are close gracefully.- Returns:
Counter64connectionAborts, ornullif it is not present.
-
requireConnectionAborts
Return connectionAborts, guaranteed to be non-null.Number of aborted connections to the server. These do not include connections that are close gracefully.- Returns:
Counter64connectionAborts, guaranteed to be non-null.- Throws:
NoSuchElementException- if connectionAborts is not present
-
getConnectionFailures
Counter64 getConnectionFailures()Return connectionFailures, ornullif it is not present.Number of connection failures to the server- Returns:
Counter64connectionFailures, ornullif it is not present.
-
requireConnectionFailures
Return connectionFailures, guaranteed to be non-null.Number of connection failures to the server- Returns:
Counter64connectionFailures, guaranteed to be non-null.- Throws:
NoSuchElementException- if connectionFailures is not present
-
getConnectionTimeouts
Counter64 getConnectionTimeouts()Return connectionTimeouts, ornullif it is not present.Number of connection timeouts to the server- Returns:
Counter64connectionTimeouts, ornullif it is not present.
-
requireConnectionTimeouts
Return connectionTimeouts, guaranteed to be non-null.Number of connection timeouts to the server- Returns:
Counter64connectionTimeouts, guaranteed to be non-null.- Throws:
NoSuchElementException- if connectionTimeouts is not present
-
getMessagesSent
Counter64 getMessagesSent()Return messagesSent, ornullif it is not present.Number of messages sent to the server- Returns:
Counter64messagesSent, ornullif it is not present.
-
requireMessagesSent
Return messagesSent, guaranteed to be non-null.Number of messages sent to the server- Returns:
Counter64messagesSent, guaranteed to be non-null.- Throws:
NoSuchElementException- if messagesSent is not present
-
getMessagesReceived
Counter64 getMessagesReceived()Return messagesReceived, ornullif it is not present.Number of messages received by the server- Returns:
Counter64messagesReceived, ornullif it is not present.
-
requireMessagesReceived
Return messagesReceived, guaranteed to be non-null.Number of messages received by the server- Returns:
Counter64messagesReceived, guaranteed to be non-null.- Throws:
NoSuchElementException- if messagesReceived is not present
-
getErrorsReceived
Counter64 getErrorsReceived()Return errorsReceived, ornullif it is not present.Number of error messages received from the server- Returns:
Counter64errorsReceived, ornullif it is not present.
-
requireErrorsReceived
Return errorsReceived, guaranteed to be non-null.Number of error messages received from the server- Returns:
Counter64errorsReceived, guaranteed to be non-null.- Throws:
NoSuchElementException- if errorsReceived is not present
-