
com.airlenet.yang.model.tailfCommon.SnmpIdentifier Maven / Gradle / Ivy
/*
* @(#)SnmpIdentifier.java 1.0 09/09/17
*
* This file has been auto-generated by JNC, the
* Java output format plug-in of pyang.
* Origin: module "tailf-common", revision: "2017-01-26".
*/
package com.airlenet.yang.model.tailfCommon;
import com.tailf.jnc.YangException;
import com.tailf.jnc.YangString;
/**
* This class represents an element from
* the namespace
* generated to "/Users/lig/Documents/workspace/play-netconf/yang-model/src/main/java/com.airlenet.yang.model/tailfCommon/snmp-identifier"
*
* See line 54 in
* /Users/lig/Documents/workspace/play-netconf/yang-model/src/main/yang/module/tailf/tailf-meta-extensions.yang
*
* @version 1.0 2017-09-09
* @author Auto Generated
*/
public class SnmpIdentifier extends YangString {
private static final long serialVersionUID = 1L;
/**
* Constructor for SnmpIdentifier object from a string.
* @param value Value to construct the SnmpIdentifier from.
*/
public SnmpIdentifier(String value) throws YangException {
super(value);
check();
}
/**
* Sets the value using a string value.
* @param value The value to set.
*/
public void setValue(String value) throws YangException {
super.setValue(value);
check();
}
/**
* Checks all restrictions (if any).
*/
public void check() throws YangException {
}
}