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

http://mobicents.googlecode.com/ · Java · 71 lines · 27 code · 7 blank · 37 comment · 0 complexity · 92d7b9082c0fb5cbe5b9d40f41d75284 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. /**
  24. *
  25. * LocationEstimateType ::= ENUMERATED {
  26. * currentLocation (0),
  27. * currentOrLastKnownLocation (1),
  28. * initialLocation (2),
  29. * ...,
  30. * activateDeferredLocation (3),
  31. * cancelDeferredLocation (4) }
  32. * -- exception handling:
  33. * -- a ProvideSubscriberLocation-Arg containing an unrecognized LocationEstimateType
  34. * -- shall be rejected by the receiver with a return error cause of unexpected data value
  35. *
  36. * @author amit bhayani
  37. *
  38. */
  39. public enum LocationEstimateType {
  40. currentLocation(0), currentOrLastKnownLocation(1), initialLocation(2), activateDeferredLocation(3), cancelDeferredLocation(4);
  41. private final int type;
  42. private LocationEstimateType(int type) {
  43. this.type = type;
  44. }
  45. public int getType(){
  46. return this.type;
  47. }
  48. public static LocationEstimateType getLocationEstimateType(int type){
  49. switch(type){
  50. case 0:
  51. return currentLocation;
  52. case 1:
  53. return currentOrLastKnownLocation;
  54. case 2:
  55. return initialLocation;
  56. case 3:
  57. return activateDeferredLocation;
  58. case 4:
  59. return cancelDeferredLocation;
  60. default:
  61. return null;
  62. }
  63. }
  64. }