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

http://mobicents.googlecode.com/ · Java · 84 lines · 17 code · 14 blank · 53 comment · 0 complexity · 826a1fbc017c5c410997da8ad299c112 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. import org.mobicents.protocols.ss7.map.api.errors.MAPErrorMessageFactory;
  24. import org.mobicents.protocols.ss7.map.api.service.lsm.MAPServiceLsm;
  25. import org.mobicents.protocols.ss7.map.api.service.sms.MAPServiceSms;
  26. import org.mobicents.protocols.ss7.map.api.service.subscriberInformation.MAPServiceSubscriberInformation;
  27. import org.mobicents.protocols.ss7.map.api.service.supplementary.MAPServiceSupplementary;
  28. /**
  29. *
  30. * @author amit bhayani
  31. *
  32. */
  33. public interface MAPProvider {
  34. // public static final int NETWORK_UNSTRUCTURED_SS_CONTEXT_V2 = 1;
  35. /**
  36. * Add MAP Dialog listener to the Stack
  37. *
  38. * @param mapDialogListener
  39. */
  40. public void addMAPDialogListener(MAPDialogListener mapDialogListener);
  41. /**
  42. * Remove MAP DIalog Listener from the stack
  43. *
  44. * @param mapDialogListener
  45. */
  46. public void removeMAPDialogListener(MAPDialogListener mapDialogListener);
  47. /**
  48. * Get the {@link MAPParameterFactory}
  49. *
  50. * @return
  51. */
  52. public MAPParameterFactory getMAPParameterFactory();
  53. /**
  54. * Get the {@link MAPErrorMessageFactory}
  55. *
  56. * @return
  57. */
  58. public MAPErrorMessageFactory getMAPErrorMessageFactory();
  59. /**
  60. * Get {@link MAPDialog} corresponding to passed dialogId
  61. *
  62. * @param dialogId
  63. * @return
  64. */
  65. public MAPDialog getMAPDialog(Long dialogId);
  66. public MAPServiceSupplementary getMAPServiceSupplementary();
  67. public MAPServiceSms getMAPServiceSms();
  68. public MAPServiceLsm getMAPServiceLsm();
  69. public MAPServiceSubscriberInformation getMapServiceSubscriberInformation();
  70. }