/protocols/ss7/map/map-api/src/main/java/org/mobicents/protocols/ss7/map/api/service/supplementary/ProcessUnstructuredSSRequestIndication.java
Java | 69 lines | 7 code | 7 blank | 55 comment | 0 complexity | 7990399ec92aaf8caa4e64b12fcd9de7 MD5 | raw file
1/* 2 * JBoss, Home of Professional Open Source 3 * Copyright 2011, Red Hat, Inc. and individual contributors 4 * by the @authors tag. See the copyright.txt in the distribution for a 5 * full listing of individual contributors. 6 * 7 * This is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU Lesser General Public License as 9 * published by the Free Software Foundation; either version 2.1 of 10 * the License, or (at your option) any later version. 11 * 12 * This software is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Lesser General Public License for more details. 16 * 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this software; if not, write to the Free 19 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 20 * 02110-1301 USA, or see the FSF site: http://www.fsf.org. 21 */ 22 23package org.mobicents.protocols.ss7.map.api.service.supplementary; 24 25import org.mobicents.protocols.ss7.map.api.primitives.AlertingPattern; 26import org.mobicents.protocols.ss7.map.api.primitives.ISDNAddressString; 27 28 29/** 30 * processUnstructuredSS-Request OPERATION ::= { --Timer 10 minutes 31 * ARGUMENT 32 * USSD-Arg 33 * RESULT 34 * USSD-Res 35 * ERRORS { 36 * systemFailure | 37 * dataMissing | 38 * unexpectedDataValue | 39 * unknownAlphabet | 40 * callBarred} 41 * CODE local:59 } 42 * 43 * 44 *USSD-Arg ::= SEQUENCE { 45 * ussd-DataCodingScheme USSD-DataCodingScheme, 46 * ussd-String USSD-String, 47 * ... , 48 * alertingPattern AlertingPattern OPTIONAL, 49 * msisdn [0] ISDN-AddressString OPTIONAL } 50 * 51 *USSD-Res ::= SEQUENCE { 52 * ussd-DataCodingScheme USSD-DataCodingScheme, 53 * ussd-String USSD-String, 54 * ...} 55 * 56 * This service is used between the MSC and the VLR and between the VLR and the 57 * HLR to relay information in order to allow unstructured supplementary service 58 * operation. 59 * 60 * @author amit bhayani 61 * 62 */ 63public interface ProcessUnstructuredSSRequestIndication extends USSDMessage { 64 65 public ISDNAddressString getMSISDNAddressString(); 66 67 public AlertingPattern getAlertingPattern(); 68 69}