/** * Start time:13:31:04 2009-03-30<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski * </a> * */ package org.mobicents.ss7.isup.impl.message.parameter; import java.io.ByteArrayOutputStream; import java.io.IOException; import org.mobicents.ss7.isup.ParameterRangeInvalidException; import org.mobicents.ss7.isup.message.parameter.AccessDeliveryInformation; /** * Start time:13:31:04 2009-03-30<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a> * */ public class AccessDeliveryInformationImpl extends AbstractParameter implements AccessDeliveryInformation{ private int accessDeliveryIndicator; public AccessDeliveryInformationImpl(int accessDeliveryIndicator) { super(); this.accessDeliveryIndicator = accessDeliveryIndicator; } public AccessDeliveryInformationImpl() { super(); } public AccessDeliveryInformationImpl(byte[] representation) throws ParameterRangeInvalidException { super(); this.decodeElement(representation); } /* * (non-Javadoc) * * @see org.mobicents.isup.ISUPComponent#decodeElement(byte[]) */ public int decodeElement(byte[] b) throws ParameterRangeInvalidException { if (b == null || b.length != 1) { throw new IllegalArgumentException("byte[] must not be null or have different size than 1"); } this.accessDeliveryIndicator = (byte) (b[0] & 0x01); return 1; } /* * (non-Javadoc) * * @see org.mobicents.isup.ISUPComponent#encodeElement() */ public byte[] encodeElement() throws IOException { return new byte[] { (byte) this.accessDeliveryIndicator }; } /* * (non-Javadoc) * * @see * org.mobicents.isup.ISUPComponent#encodeElement(java.io.ByteArrayOutputStream * ) */ public int encodeElement(ByteArrayOutputStream bos) throws IOException { bos.write(this.accessDeliveryIndicator); return 1; } public int getAccessDeliveryIndicator() { return accessDeliveryIndicator; } public void setAccessDeliveryIndicator(int accessDeliveryIndicator) { this.accessDeliveryIndicator = accessDeliveryIndicator; } public int getCode() { return _PARAMETER_CODE; } }