Interface AaaServergroupCommonConfig

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:
Config, State

@Generated("mdsal-binding-generator") public interface AaaServergroupCommonConfig extends org.opendaylight.yangtools.yang.binding.DataObject
Configuration data for AAA server groups

This class represents the following YANG schema fragment defined in module openconfig-aaa

 grouping aaa-servergroup-common-config {
   leaf name {
     type string;
   }
   leaf type {
     type identityref {
       base AAA_SERVER_TYPE;
     }
   }
 }
 
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final @NonNull org.opendaylight.yangtools.yang.common.QName
    YANG identifier of the statement represented by this class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Return name, or null if it is not present.
    Return type, or null if it is not present.
     
    default @NonNull String
    Return name, guaranteed to be non-null.
    default @NonNull AAASERVERTYPE
    Return type, guaranteed to be non-null.
  • Field Details

    • QNAME

      static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
      YANG identifier of the statement represented by this class.
  • Method Details

    • implementedInterface

      Class<? extends AaaServergroupCommonConfig> implementedInterface()
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
    • getName

      String getName()
      Return name, or null if it is not present.
           
               Name for the server group
           
       
      Returns:
      String name, or null if it is not present.
    • requireName

      default @NonNull String requireName()
      Return name, guaranteed to be non-null.
           
               Name for the server group
           
       
      Returns:
      String name, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if name is not present
    • getType

      AAASERVERTYPE getType()
      Return type, or null if it is not present.
           
               AAA server type -- all servers in the group must be of this type
           
       
      Returns:
      AAASERVERTYPE type, or null if it is not present.
    • requireType

      default @NonNull AAASERVERTYPE requireType()
      Return type, guaranteed to be non-null.
           
               AAA server type -- all servers in the group must be of this type
           
       
      Returns:
      AAASERVERTYPE type, guaranteed to be non-null.
      Throws:
      NoSuchElementException - if type is not present