/** * Start time:12:56:36 2009-07-17<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.IOException; import org.mobicents.ss7.isup.ParameterRangeInvalidException; import org.mobicents.ss7.isup.message.parameter.CCSS; /** * Start time:12:56:36 2009-07-17<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com">Bartosz Baranowski </a> */ public class CCSSImpl extends AbstractParameter implements CCSS{ private static final int _TURN_ON = 1; private static final int _TURN_OFF = 0; private boolean ccssCall = false; public CCSSImpl(boolean ccssCall) { super(); this.ccssCall = ccssCall; } public CCSSImpl(byte[] b) throws ParameterRangeInvalidException { super(); decodeElement(b); } public CCSSImpl() { super(); // TODO Auto-generated constructor stub } /* * (non-Javadoc) * * @see org.mobicents.isup.ISUPComponent#decodeElement(byte[]) */ public int decodeElement(byte[] b) throws ParameterRangeInvalidException { if (b == null || b.length == 0) { throw new ParameterRangeInvalidException("byte[] must not be null and length must be 1"); } this.ccssCall = (b[0] & 0x01) == _TURN_ON; return 1; } /* * (non-Javadoc) * * @see org.mobicents.isup.ISUPComponent#encodeElement() */ public byte[] encodeElement() throws IOException { return new byte[] { (byte) (this.ccssCall ? _TURN_ON : _TURN_OFF) }; } public boolean isCcssCall() { return ccssCall; } public void setCcssCall(boolean ccssCall) { this.ccssCall = ccssCall; } public int getCode() { return _PARAMETER_CODE; } }