*/
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));
}