All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentation<Actions>, 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

@Generated("mdsal-binding-generator") public interface Actions1 extends org.opendaylight.yangtools.yang.binding.Augmentation<Actions>

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

 augment /rpol:routing-policy/rpol:policy-definitions/rpol:policy-definition/rpol:statements/rpol:statement/rpol:actions {
   container bgp-actions {
     container set-as-path-prepend {
       presence
         "node is present in the config data to use the AS
          prepend action";
       leaf repeat-n {
         type uint8;
       }
     }
     container set-community {
       presence
         "node is present in the config data when
          set-community action is used";
       choice set-community-method {
         case inline {
           list communities {
             uses bgp-t:community;
           }
         }
         case reference {
           leaf community-set-ref {
             type leafref {
               path /rpol:routing-policy/rpol:defined-sets/bgp-pol:bgp-defined-sets/bgp-pol:community-sets/bgp-pol:community-set/bgp-pol:community-set-name;
             }
           }
         }
       }
       leaf options {
         type bgp-set-community-option-type;
       }
     }
     container set-ext-community {
       presence
         "node is present in the config data when
          set-community action is used";
       choice set-ext-community-method {
         case inline {
           list ext-community-member {
             uses bgp-t:extended-community;
           }
         }
         case reference {
           leaf ext-community-set-ref {
             type leafref {
               path /rpol:routing-policy/rpol:defined-sets/bgp-pol:bgp-defined-sets/bgp-pol:ext-community-sets/bgp-pol:ext-community-set/bgp-pol:ext-community-set-name;
             }
           }
         }
       }
       leaf options {
         type bgp-set-community-option-type;
       }
     }
     leaf set-route-origin {
       type bgp-types:bgp-origin-attr-type;
     }
     leaf set-local-pref {
       type uint32;
     }
     leaf set-next-hop {
       type bgp-next-hop-type;
     }
     leaf set-med {
       type bgp-set-med-type;
     }
   }
 }
 
See Also:
  • Method Details

    • implementedInterface

      default Class<Actions1> implementedInterface()
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.Augmentation<Actions>
      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
    • bindingHashCode

      static int bindingHashCode(@NonNull Actions1 obj)
      Default implementation of Object.hashCode() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent hashing results across all implementations.
      Parameters:
      obj - Object for which to generate hashCode() result.
      Returns:
      Hash code value of data modeled by this interface.
      Throws:
      NullPointerException - if obj is null
    • bindingEquals

      static boolean bindingEquals(@NonNull Actions1 thisObj, Object obj)
      Default implementation of Object.equals(Object) contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent equality results across all implementations.
      Parameters:
      thisObj - Object acting as the receiver of equals invocation
      obj - Object acting as argument to equals invocation
      Returns:
      True if thisObj and obj are considered equal
      Throws:
      NullPointerException - if thisObj is null
    • bindingToString

      static String bindingToString(@NonNull Actions1 obj)
      Default implementation of Object.toString() contract for this interface. Implementations of this interface are encouraged to defer to this method to get consistent string representations across all implementations.
      Parameters:
      obj - Object for which to generate toString() result.
      Returns:
      String value of data modeled by this interface.
      Throws:
      NullPointerException - if obj is null
    • getBgpActions

      BgpActions getBgpActions()
      Return bgpActions, or null if it is not present.
           
               Definitions for policy action statements that change BGP-specific attributes of
               the route
           
       
      Returns:
      BgpActions bgpActions, or null if it is not present.
    • nonnullBgpActions

      @NonNull BgpActions nonnullBgpActions()
      Return bgpActions, or an empty instance if it is not present.
      Returns:
      BgpActions bgpActions, or an empty instance if it is not present.