/protocols/ss7/map/map-impl/src/main/java/org/mobicents/protocols/ss7/map/service/sms/ForwardShortMessageResponseIndicationImpl.java
Java | 106 lines | 59 code | 26 blank | 21 comment | 0 complexity | dafb2b00c869bad96463c91142027824 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.service.sms; 24 25import org.mobicents.protocols.asn.AsnInputStream; 26import org.mobicents.protocols.asn.AsnOutputStream; 27import org.mobicents.protocols.asn.Tag; 28import org.mobicents.protocols.ss7.map.api.MAPException; 29import org.mobicents.protocols.ss7.map.api.MAPMessageType; 30import org.mobicents.protocols.ss7.map.api.MAPOperationCode; 31import org.mobicents.protocols.ss7.map.api.MAPParsingComponentException; 32import org.mobicents.protocols.ss7.map.api.MAPParsingComponentExceptionReason; 33import org.mobicents.protocols.ss7.map.api.service.sms.ForwardShortMessageResponseIndication; 34 35public class ForwardShortMessageResponseIndicationImpl extends SmsMessageImpl implements ForwardShortMessageResponseIndication { 36 37 @Override 38 public MAPMessageType getMessageType() { 39 return MAPMessageType.forwardSM_Response; 40 } 41 42 @Override 43 public int getOperationCode() { 44 return MAPOperationCode.mo_forwardSM; 45 } 46 47 @Override 48 public int getTag() throws MAPException { 49 50 throw new MAPException("ForwardShortMessageResponseIndication has no MAP message primitive"); 51 } 52 53 @Override 54 public int getTagClass() { 55 56 return Tag.CLASS_UNIVERSAL; 57 } 58 59 @Override 60 public boolean getIsPrimitive() { 61 62 return false; 63 } 64 65 66 @Override 67 public void decodeAll(AsnInputStream ansIS) throws MAPParsingComponentException { 68 69 throw new MAPParsingComponentException("ForwardShortMessageResponseIndication has no MAP message primitive", MAPParsingComponentExceptionReason.MistypedParameter); 70 } 71 72 @Override 73 public void decodeData(AsnInputStream ansIS, int length) throws MAPParsingComponentException { 74 75 throw new MAPParsingComponentException("ForwardShortMessageResponseIndication has no MAP message primitive", MAPParsingComponentExceptionReason.MistypedParameter); 76 } 77 78 @Override 79 public void encodeAll(AsnOutputStream asnOs) throws MAPException { 80 81 throw new MAPException("ForwardShortMessageResponseIndication has no MAP message primitive"); 82 } 83 84 @Override 85 public void encodeAll(AsnOutputStream asnOs, int tagClass, int tag) throws MAPException { 86 87 throw new MAPException("ForwardShortMessageResponseIndication has no MAP message primitive"); 88 } 89 90 @Override 91 public void encodeData(AsnOutputStream asnOs) throws MAPException { 92 93 throw new MAPException("ForwardShortMessageResponseIndication has no MAP message primitive"); 94 } 95 96 @Override 97 public String toString() { 98 StringBuilder sb = new StringBuilder(); 99 sb.append("ForwardShortMessageResponse ["); 100 101 sb.append("]"); 102 103 return sb.toString(); 104 } 105} 106