/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, 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. */ package org.mobicents.protocols.ss7.m3ua.impl.parameter; import org.mobicents.protocols.ss7.m3ua.parameter.CongestedIndication; import org.mobicents.protocols.ss7.m3ua.parameter.Parameter; /** * * @author amit bhayani * */ public class CongestedIndicationImpl extends ParameterImpl implements CongestedIndication { private CongestionLevel level; protected CongestedIndicationImpl(CongestionLevel level) { this.level = level; this.tag = Parameter.Congestion_Indications; } protected CongestedIndicationImpl(byte[] data) { // data[0], data[1] and data[2] are reserved this.level = CongestionLevel.getCongestionLevel(data[3]); this.tag = Parameter.Congestion_Indications; } @Override protected byte[] getValue() { byte[] data = new byte[4]; data[0] = 0;// Reserved data[1] = 0; // Reserved data[2] = 0;// Reserved data[3] = (byte) level.getLevel(); return data; } public CongestionLevel getCongestionLevel() { return this.level; } @Override public String toString() { return String.format("CongestedIndication level=%s", level); } }