Interface GetConstrainedPathInput

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.Augmentable<GetConstrainedPathInput>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject, org.opendaylight.yangtools.yang.binding.RpcInput

    public interface GetConstrainedPathInput
    extends org.opendaylight.yangtools.yang.binding.RpcInput, org.opendaylight.yangtools.yang.binding.Augmentable<GetConstrainedPathInput>

    This class represents the following YANG schema fragment defined in module path-computation

     input input {
       leaf graph-name {
         type string;
       }
       leaf source {
         type uint64;
       }
       leaf destination {
         type uint64;
       }
       container constraints {
         uses path-constraints;
       }
       leaf algorithm {
         type algorithm-type;
       }
     }
     
    The schema path to identify an instance is path-computation/get-constrained-path/input

    To create instances of this class use GetConstrainedPathInputBuilder.

    See Also:
    GetConstrainedPathInputBuilder
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        default Class<GetConstrainedPathInput> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.RpcInput
      • getGraphName

        @Nullable String getGraphName()
        Returns:
        java.lang.String graphName, or null if not present
      • getSource

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getSource()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 source, or null if not present
      • getDestination

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getDestination()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 destination, or null if not present
      • getConstraints

        @Nullable Constraints getConstraints()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.path.computation.rev200120.get.constrained.path.input.Constraints constraints, or null if not present
      • getAlgorithm

        @Nullable AlgorithmType getAlgorithm()
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.path.computation.rev200120.AlgorithmType algorithm, or null if not present