/protocols/ss7/map/map-api/src/main/java/org/mobicents/protocols/ss7/map/api/MAPOperationCode.java

http://mobicents.googlecode.com/ · Java · 67 lines · 25 code · 10 blank · 32 comment · 0 complexity · ccbd08f79b4beab5bfc99c25a6e9b39b 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;
  23. /**
  24. * Standard Operation Code included in Invoke. ETS 300 974: December 2000 (GSM
  25. * 09.02 version 5.15.1)
  26. *
  27. * @author amit bhayani
  28. *
  29. */
  30. public interface MAPOperationCode {
  31. // -- supplementary service handling operation codes
  32. public static final int registerSS = 10;
  33. public static final int eraseSS = 11;
  34. public static final int activateSS = 12;
  35. public static final int deactivateSS = 13;
  36. public static final int interrogateSS = 14;
  37. public static final int processUnstructuredSS_Request = 59;
  38. public static final int unstructuredSS_Request = 60;
  39. public static final int unstructuredSS_Notify = 61;
  40. public static final int registerPassword = 17;
  41. public static final int getPassword = 18;
  42. //-- short message service operation codes
  43. public static final int sendRoutingInfoForSM = 45;
  44. public static final int mo_forwardSM = 46;
  45. public static final int mt_forwardSM = 44;
  46. public static final int reportSM_DeliveryStatus = 47;
  47. public static final int informServiceCentre = 63;
  48. public static final int alertServiceCentre = 64;
  49. public static final int alertServiceCentreWithoutResult = 49;
  50. public static final int readyForSM = 66;
  51. //Location Service Management
  52. public static final int provideSubscriberLocation = 83;
  53. public static final int subscriberLocationReport = 86;
  54. public static final int sendRoutingInfoForLCS = 85;
  55. //Sunscriber Information Service
  56. public static final int anyTimeInterrogation = 71;
  57. }