/* * 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.ussd; 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; /** * * @author sergey vetyutnev * */ public class TestUssdClientConfigurationData_OldFormat extends TestUssdClientConfigurationData { protected static final XMLFormat<TestUssdClientConfigurationData_OldFormat> XML = new XMLFormat<TestUssdClientConfigurationData_OldFormat>( TestUssdClientConfigurationData_OldFormat.class) { public void write(TestUssdClientConfigurationData_OldFormat clt, OutputElement xml) throws XMLStreamException { } public void read(InputElement xml, TestUssdClientConfigurationData_OldFormat clt) throws XMLStreamException { clt.dataCodingScheme = xml.getAttribute(DATA_CODING_SCHEME).toInt(); clt.alertingPattern = xml.getAttribute(ALERTING_PATTERN).toInt(); clt.maxConcurrentDialogs = xml.getAttribute(MAX_CONCURENT_DIALOGS).toInt(); clt.oneNotificationFor100Dialogs = xml.getAttribute(ONE_NOTIFICATION_FOR_100_DIALOGS).toBoolean(); clt.msisdnAddress = (String) xml.get(MSISDN_ADDRESS, String.class); String an = (String) xml.get(MSISDN_ADDRESS_NATURE, String.class); clt.msisdnAddressNature = AddressNature.valueOf(an); String np = (String) xml.get(MSISDN_NUMBERING_PLAN, String.class); clt.msisdnNumberingPlan = NumberingPlan.valueOf(np); String uca = (String) xml.get(USSD_CLIENT_ACTION, String.class); clt.ussdClientAction = UssdClientAction.createInstance(uca); clt.autoRequestString = (String) xml.get(AUTO_REQUEST_STRING, String.class); } }; }