Package org.tinyradius.attribute

Examples of org.tinyradius.attribute.IntegerAttribute


   */
  public void setAcctStatusType(int acctStatusType) {
    if (acctStatusType < 1 || acctStatusType > 15)
      throw new IllegalArgumentException("bad Acct-Status-Type");
    removeAttributes(ACCT_STATUS_TYPE);
    addAttribute(new IntegerAttribute(ACCT_STATUS_TYPE, acctStatusType));
  }
View Full Code Here

TOP

Related Classes of org.tinyradius.attribute.IntegerAttribute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.