All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yangcentral.yangkit.model.impl.restriction.RestrictionImpl Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
package org.yangcentral.yangkit.model.impl.restriction;

import org.yangcentral.yangkit.base.YangContext;
import org.yangcentral.yangkit.model.api.restriction.Restriction;
import org.yangcentral.yangkit.model.api.stmt.Typedef;

public abstract class RestrictionImpl implements Restriction {
   private Typedef derived;
   private YangContext context;

   public RestrictionImpl(YangContext context, Typedef derived) {
      this(context);
      this.derived = derived;
   }

   public RestrictionImpl(YangContext context) {
      this.context = context;
   }

   public Typedef getDerived() {
      return this.derived;
   }

   public YangContext getContext() {
      return this.context;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy