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

http://mobicents.googlecode.com/ · Java · 83 lines · 40 code · 14 blank · 29 comment · 3 complexity · b96877c3db5d31891dfa69fe5c6d3f9e 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 java.util.Arrays;
  24. /**
  25. *
  26. * @author amit bhayani
  27. *
  28. */
  29. public enum MAPDialogueAS {
  30. /**
  31. * Look at http://www.oid-info.com/get/0.4.0.0.1.1.1.1
  32. */
  33. MAP_DialogueAS(new long[] { 0, 4, 0, 0, 1, 1, 1, 1 }, 1);
  34. private long[] oid;
  35. private int dialogAS;
  36. private MAPDialogueAS(long[] oid, int dialogAS) {
  37. this.oid = oid;
  38. this.dialogAS = dialogAS;
  39. }
  40. public long[] getOID() {
  41. return this.oid;
  42. }
  43. public int getDialogAS() {
  44. return this.dialogAS;
  45. }
  46. public static MAPDialogueAS getInstance(int dialogAS) {
  47. switch (dialogAS) {
  48. case 1:
  49. return MAP_DialogueAS;
  50. default:
  51. return null;
  52. }
  53. }
  54. public static MAPDialogueAS getInstance(long[] oid) {
  55. long[] temp = MAP_DialogueAS.getOID();
  56. if (Arrays.equals(temp, oid)) {
  57. return MAP_DialogueAS;
  58. }
  59. return null;
  60. }
  61. @Override
  62. public String toString(){
  63. StringBuffer s = new StringBuffer();
  64. for(long l : this.oid){
  65. s.append(l).append(", ");
  66. }
  67. return s.toString();
  68. }
  69. }