/**
  * set the fields value: AssociationType (CMF_PACKAGE_OVERRIDES.association_type)
  *
  * @param value the value to set the field to
  * @throws ServiceException if attempt to set a non-nullable field to null
  */
 @QueryParam("AssociationType")
 public void setAssociationType(BigInteger value) throws ServiceException {
   if (value == null) {
     throw new ServiceException(
         "ArubaClient",
         "ck_INVALID_NULL_VALUE",
         "The field's value cannot be NULL",
         _objName,
         "AssociationType",
         "setAssociationType");
   }
   if (value != null && !DataHelper.validLength(value, 1)) {
     throw new ServiceException(
         "ArubaClient",
         "ck_INVALID_LENGTH",
         "The field's value is too long",
         _objName,
         "AssociationType",
         "setAssociationType");
   }
   this.AssociationType = value;
   this._AssociationTypeSet = true;
 }