/protocols/ss7/map/map-api/src/main/java/org/mobicents/protocols/ss7/map/api/service/subscriberInformation/LocationInformationEPS.java

http://mobicents.googlecode.com/ · Java · 64 lines · 12 code · 12 blank · 40 comment · 0 complexity · f5ab4f4c2c4164d4f745350095c7684e 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.subscriberInformation;
  23. import org.mobicents.protocols.ss7.map.api.primitives.MAPExtensionContainer;
  24. /**
  25. *
  26. LocationInformationEPS ::= SEQUENCE {
  27. e-utranCellGlobalIdentity [0] E-UTRAN-CGI OPTIONAL,
  28. trackingAreaIdentity [1] TA-Id OPTIONAL,
  29. extensionContainer [2] ExtensionContainer OPTIONAL,
  30. geographicalInformation [3] GeographicalInformation OPTIONAL,
  31. geodeticInformation [4] GeodeticInformation OPTIONAL,
  32. currentLocationRetrieved [5] NULL OPTIONAL,
  33. ageOfLocationInformation [6] AgeOfLocationInformation OPTIONAL,
  34. ...,
  35. mme-Name [7] DiameterIdentity OPTIONAL }
  36. -- currentLocationRetrieved shall be present if the location information
  37. -- was retrieved after successful paging.
  38. *
  39. * @author sergey vetyutnev
  40. *
  41. */
  42. public interface LocationInformationEPS {
  43. public EUtranCgi getEUtranCellGlobalIdentity();
  44. public TAId getTrackingAreaIdentity();
  45. public MAPExtensionContainer getExtensionContainer();
  46. public GeographicalInformation getGeographicalInformation();
  47. public GeodeticInformation getGeodeticInformation();
  48. public boolean getCurrentLocationRetrieved();
  49. public Integer getAgeOfLocationInformation();
  50. public DiameterIdentity getMmeName();
  51. }