PageRenderTime 25ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/protocols/ss7/map/map-api/src/main/java/org/mobicents/protocols/ss7/map/api/service/supplementary/ProcessUnstructuredSSRequestIndication.java

http://mobicents.googlecode.com/
Java | 69 lines | 7 code | 7 blank | 55 comment | 0 complexity | 7990399ec92aaf8caa4e64b12fcd9de7 MD5 | raw file
Possible License(s): LGPL-3.0, GPL-3.0, LGPL-2.1, GPL-2.0, CC-BY-SA-3.0, CC0-1.0, Apache-2.0, BSD-3-Clause
  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.supplementary;
  23. import org.mobicents.protocols.ss7.map.api.primitives.AlertingPattern;
  24. import org.mobicents.protocols.ss7.map.api.primitives.ISDNAddressString;
  25. /**
  26. * processUnstructuredSS-Request OPERATION ::= { --Timer 10 minutes
  27. * ARGUMENT
  28. * USSD-Arg
  29. * RESULT
  30. * USSD-Res
  31. * ERRORS {
  32. * systemFailure |
  33. * dataMissing |
  34. * unexpectedDataValue |
  35. * unknownAlphabet |
  36. * callBarred}
  37. * CODE local:59 }
  38. *
  39. *
  40. *USSD-Arg ::= SEQUENCE {
  41. * ussd-DataCodingScheme USSD-DataCodingScheme,
  42. * ussd-String USSD-String,
  43. * ... ,
  44. * alertingPattern AlertingPattern OPTIONAL,
  45. * msisdn [0] ISDN-AddressString OPTIONAL }
  46. *
  47. *USSD-Res ::= SEQUENCE {
  48. * ussd-DataCodingScheme USSD-DataCodingScheme,
  49. * ussd-String USSD-String,
  50. * ...}
  51. *
  52. * This service is used between the MSC and the VLR and between the VLR and the
  53. * HLR to relay information in order to allow unstructured supplementary service
  54. * operation.
  55. *
  56. * @author amit bhayani
  57. *
  58. */
  59. public interface ProcessUnstructuredSSRequestIndication extends USSDMessage {
  60. public ISDNAddressString getMSISDNAddressString();
  61. public AlertingPattern getAlertingPattern();
  62. }