/protocols/ss7/map/map-api/src/main/java/org/mobicents/protocols/ss7/map/api/service/sms/SendRoutingInfoForSMRequestIndication.java

http://mobicents.googlecode.com/ · Java · 82 lines · 13 code · 12 blank · 57 comment · 0 complexity · 758ee082480627bbf04f5ceb913a5c99 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. package org.mobicents.protocols.ss7.map.api.service.sms;
  23. import org.mobicents.protocols.ss7.map.api.primitives.AddressString;
  24. import org.mobicents.protocols.ss7.map.api.primitives.ISDNAddressString;
  25. import org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer;
  26. /**
  27. *
  28. * sendRoutingInfoForSM OPERATION ::= { --Timer m
  29. * ARGUMENT
  30. * RoutingInfoForSM-Arg
  31. * RESULT
  32. * RoutingInfoForSM-Res
  33. * ERRORS {
  34. * systemFailure |
  35. * dataMissing |
  36. * unexpectedDataValue |
  37. * facilityNotSupported |
  38. * unknownSubscriber |
  39. * teleserviceNotProvisioned |
  40. * callBarred |
  41. * absentSubscriberSM}
  42. * CODE local:45 }
  43. *
  44. *
  45. * RoutingInfoForSM-Arg ::= SEQUENCE {
  46. * msisdn [0] ISDN-AddressString,
  47. * sm-RP-PRI [1] BOOLEAN,
  48. * serviceCentreAddress [2] AddressString,
  49. * extensionContainer [6] ExtensionContainer OPTIONAL,
  50. * ... ,
  51. * gprsSupportIndicator [7] NULL OPTIONAL,
  52. * -- gprsSupportIndicator is set only if the SMS-GMSC supports
  53. * -- receiving of two numbers from the HLR
  54. * sm-RP-MTI [8] SM-RP-MTI OPTIONAL,
  55. * sm-RP-SMEA [9] SM-RP-SMEA OPTIONAL }
  56. *
  57. *
  58. *
  59. * @author sergey vetyutnev
  60. *
  61. */
  62. public interface SendRoutingInfoForSMRequestIndication extends SmsMessage {
  63. public ISDNAddressString getMsisdn();
  64. public boolean getSm_RP_PRI();
  65. public AddressString getServiceCentreAddress();
  66. public MAPExtensionContainer getExtensionContainer();
  67. public boolean getGprsSupportIndicator();
  68. public SM_RP_MTI getSM_RP_MTI();
  69. public SM_RP_SMEA getSM_RP_SMEA();
  70. }