/protocols/ss7/map/map-api/src/main/java/org/mobicents/protocols/ss7/map/api/service/lsm/LCSQoS.java

http://mobicents.googlecode.com/ · Java · 74 lines · 10 code · 9 blank · 55 comment · 0 complexity · 0d46e4e12d381f05edbbaee9ff7eb9a3 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.lsm;
  23. import java.io.Serializable;
  24. import org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer;
  25. /**
  26. *
  27. * LCS-QoS ::= SEQUENCE {
  28. * horizontal-accuracy [0] Horizontal-Accuracy OPTIONAL,
  29. * verticalCoordinateRequest [1] NULL OPTIONAL,
  30. * vertical-accuracy [2] Vertical-Accuracy OPTIONAL,
  31. * responseTime [3] ResponseTime OPTIONAL,
  32. * extensionContainer [4] ExtensionContainer OPTIONAL,
  33. * ...}
  34. *
  35. * @author amit bhayani
  36. *
  37. */
  38. public interface LCSQoS extends Serializable {
  39. /**
  40. * Horizontal-Accuracy ::= OCTET STRING (SIZE (1))
  41. * -- bit 8 = 0
  42. * -- bits 7-1 = 7 bit Uncertainty Code defined in 3GPP TS 23.032. The horizontal location
  43. * -- error should be less than the error indicated by the uncertainty code with 67%
  44. * -- confidence.
  45. * @return
  46. */
  47. public Integer getHorizontalAccuracy();
  48. /**
  49. * NULL
  50. * @return
  51. */
  52. public Boolean getVerticalCoordinateRequest();
  53. /**
  54. * Vertical-Accuracy ::= OCTET STRING (SIZE (1))
  55. * -- bit 8 = 0
  56. * -- bits 7-1 = 7 bit Vertical Uncertainty Code defined in 3GPP TS 23.032.
  57. * -- The vertical location error should be less than the error indicated
  58. * -- by the uncertainty code with 67% confidence.
  59. *
  60. * @return
  61. */
  62. public Integer getVerticalAccuracy();
  63. public ResponseTime getResponseTime();
  64. public MAPExtensionContainer getExtensionContainer();
  65. }