/cmp/src/main/java/org/jboss/as/cmp/jdbc/bridge/CMPMessage.java

http://github.com/jbossas/jboss-as · Java · 64 lines · 24 code · 7 blank · 33 comment · 0 complexity · b7a24fd18c9eec546d8ca66671b10ad3 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source.
  3. * Copyright 2008, Red Hat Middleware LLC, and individual contributors
  4. * as indicated by the @author tags. See the copyright.txt file in the
  5. * distribution for a 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.jboss.as.cmp.jdbc.bridge;
  23. import java.io.ObjectStreamException;
  24. import java.io.Serializable;
  25. /**
  26. * Type safe enumeration of message objects.
  27. * Used by optimistic lock to lock fields and its values depending
  28. * on the strategy used.
  29. *
  30. * @author <a href="mailto:aloubyansky@hotmail.com">Alex Loubyansky</a>
  31. * @version $Revision: 81030 $
  32. */
  33. public final class CMPMessage
  34. implements Serializable {
  35. // Constants ------------------------------------------------
  36. private static int nextOrdinal = 0;
  37. private static final CMPMessage[] VALUES = new CMPMessage[5];
  38. public static final CMPMessage CHANGED = new CMPMessage("CHANGED");
  39. public static final CMPMessage ACCESSED = new CMPMessage("ACCESSED");
  40. private final transient String name;
  41. private final int ordinal;
  42. // Constructor ----------------------------------------------
  43. private CMPMessage(String name) {
  44. this.name = name;
  45. this.ordinal = nextOrdinal++;
  46. VALUES[ordinal] = this;
  47. }
  48. // Public ---------------------------------------------------
  49. public String toString() {
  50. return name;
  51. }
  52. // Package --------------------------------------------------
  53. Object readResolve()
  54. throws ObjectStreamException {
  55. return VALUES[ordinal];
  56. }
  57. }