/* * TeleStax, Open Source Cloud Communications Copyright 2012. * 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.tools.simulator.tests.sms; import javolution.xml.XMLFormat; import javolution.xml.stream.XMLStreamException; import org.mobicents.protocols.ss7.map.api.primitives.AddressNature; import org.mobicents.protocols.ss7.map.api.primitives.NumberingPlan; import org.mobicents.protocols.ss7.map.api.smstpdu.NumberingPlanIdentification; import org.mobicents.protocols.ss7.map.api.smstpdu.TypeOfNumber; import org.mobicents.protocols.ss7.tools.simulator.level3.MapProtocolVersion; /** * * @author sergey vetyutnev * */ public class TestSmsClientConfigurationData_OldFormat extends TestSmsClientConfigurationData { protected static final XMLFormat<TestSmsClientConfigurationData_OldFormat> XML = new XMLFormat<TestSmsClientConfigurationData_OldFormat>( TestSmsClientConfigurationData_OldFormat.class) { public void write(TestSmsClientConfigurationData_OldFormat srv, OutputElement xml) throws XMLStreamException { } public void read(InputElement xml, TestSmsClientConfigurationData_OldFormat clt) throws XMLStreamException { clt.smscSsn = xml.getAttribute(SMSC_SSN).toInt(); clt.serviceCenterAddress = (String) xml.get(SERVICE_CENTER_ADDRESS, String.class); clt.sriResponseImsi = (String) xml.get(SRI_RESPONSE_IMSI, String.class); clt.sriResponseVlr = (String) xml.get(SRI_RESPONSE_VLR, String.class); String an = (String) xml.get(ADDRESS_NATURE, String.class); clt.addressNature = AddressNature.valueOf(an); String np = (String) xml.get(NUMBERING_PLAN, String.class); clt.numberingPlan = NumberingPlan.valueOf(np); String mpv = (String) xml.get(MAP_PROTOCOL_VERSION, String.class); clt.mapProtocolVersion = MapProtocolVersion.createInstance(mpv); String ton = (String) xml.get(TYPE_OF_NUMBER, String.class); clt.typeOfNumber = TypeOfNumber.valueOf(ton); String npi = (String) xml.get(NUMBERING_PLAN_IDENTIFICATION, String.class); clt.numberingPlanIdentification = NumberingPlanIdentification.valueOf(npi); String sct = (String) xml.get(SMS_CODING_TYPE, String.class); clt.smsCodingType = SmsCodingType.createInstance(sct); } }; }