/* * TeleStax, Open Source Cloud Communications * Copyright 2012, Telestax Inc and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ /** * Start time:16:42:16 2009-04-05<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski * </a> * */ package org.mobicents.protocols.ss7.isup.impl.message.parameter; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import org.mobicents.protocols.ss7.isup.ParameterException; import org.mobicents.protocols.ss7.isup.message.parameter.CalledDirectoryNumber; /** * Start time:16:42:16 2009-04-05<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a> */ public class CalledDirectoryNumberImpl extends AbstractNAINumber implements CalledDirectoryNumber { protected int numberingPlanIndicator; protected int internalNetworkNumberIndicator; /** * @param representation */ public CalledDirectoryNumberImpl(byte[] representation) throws ParameterException { super(representation); getNumberingPlanIndicator(); } /** * * @param bis */ public CalledDirectoryNumberImpl(ByteArrayInputStream bis) throws ParameterException { super(bis); } public CalledDirectoryNumberImpl() { super(); } public CalledDirectoryNumberImpl(int natureOfAddresIndicator, String address, int numberingPlanIndicator, int internalNetworkNumberIndicator) { super(natureOfAddresIndicator, address); this.numberingPlanIndicator = numberingPlanIndicator; this.internalNetworkNumberIndicator = internalNetworkNumberIndicator; } public int decodeBody(ByteArrayInputStream bis) throws IllegalArgumentException { if (bis.available() == 0) { throw new IllegalArgumentException("No more data to read."); } int b = bis.read() & 0xff; this.internalNetworkNumberIndicator = (b & 0x80) >> 7; this.numberingPlanIndicator = (b >> 4) & 0x07; return 1; } public int encodeBody(ByteArrayOutputStream bos) { int c = (this.numberingPlanIndicator & 0x07) << 4; c |= (this.internalNetworkNumberIndicator << 7); bos.write(c); return 1; } public int getNumberingPlanIndicator() { return this.numberingPlanIndicator; } public void setNumberingPlanIndicator(int numberingPlanIndicator) { this.numberingPlanIndicator = numberingPlanIndicator; } public int getInternalNetworkNumberIndicator() { return internalNetworkNumberIndicator; } public void setInternalNetworkNumberIndicator(int internalNetworkNumberIndicator) { this.internalNetworkNumberIndicator = internalNetworkNumberIndicator; } public int getCode() { return _PARAMETER_CODE; } }