/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/ejb/entity/cmp/optimisticlock/CmpEntityBean.java

http://github.com/jbossas/jboss-as · Java · 190 lines · 66 code · 29 blank · 95 comment · 0 complexity · 7ca12d0c5dfd4891e7d1321884ce7d2d 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.test.integration.ejb.entity.cmp.optimisticlock;
  23. import javax.ejb.EntityBean;
  24. import javax.ejb.CreateException;
  25. import javax.ejb.RemoveException;
  26. import javax.ejb.EntityContext;
  27. /**
  28. * @author <a href="mailto:aloubyansky@hotmail.com">Alex Loubyansky</a>
  29. * @ejb.bean name="CmpEntity"
  30. * local-jndi-name="local/CmpEntityBean"
  31. * view-type="local"
  32. * type="CMP"
  33. * reentrant="false"
  34. * cmp-version="2.x"
  35. * primkey-field="id"
  36. * @jboss.create-table "true"
  37. * @jboss.remove-table "false"
  38. * @ejb.finder signature="CmpEntityLocal findById(java.lang.Integer id)"
  39. * query="select object(o) from CmpEntity o where o.id=?1"
  40. */
  41. public abstract class CmpEntityBean
  42. implements EntityBean {
  43. // Attributes ----------------------------------------
  44. private EntityContext ctx;
  45. // CMP accessors -------------------------------------
  46. /**
  47. * @ejb.pk-field
  48. * @ejb.persistent-field
  49. * @ejb.interface-method
  50. */
  51. public abstract Integer getId();
  52. public abstract void setId(Integer id);
  53. /**
  54. * @ejb.persistent-field
  55. * @ejb.interface-method
  56. */
  57. public abstract String getStringGroup1();
  58. /**
  59. * @ejb.interface-method
  60. */
  61. public abstract void setStringGroup1(String stringField);
  62. /**
  63. * @ejb.persistent-field
  64. * @ejb.interface-method
  65. */
  66. public abstract Integer getIntegerGroup1();
  67. /**
  68. * @ejb.interface-method
  69. */
  70. public abstract void setIntegerGroup1(Integer value);
  71. /**
  72. * @ejb.persistent-field
  73. * @ejb.interface-method
  74. */
  75. public abstract Double getDoubleGroup1();
  76. /**
  77. * @ejb.interface-method
  78. */
  79. public abstract void setDoubleGroup1(Double value);
  80. /**
  81. * @ejb.persistent-field
  82. * @ejb.interface-method
  83. */
  84. public abstract String getStringGroup2();
  85. /**
  86. * @ejb.interface-method
  87. */
  88. public abstract void setStringGroup2(String stringField);
  89. /**
  90. * @ejb.persistent-field
  91. * @ejb.interface-method
  92. */
  93. public abstract Integer getIntegerGroup2();
  94. /**
  95. * @ejb.interface-method
  96. */
  97. public abstract void setIntegerGroup2(Integer value);
  98. /**
  99. * @ejb.persistent-field
  100. * @ejb.interface-method
  101. */
  102. public abstract Double getDoubleGroup2();
  103. /**
  104. * @ejb.interface-method
  105. */
  106. public abstract void setDoubleGroup2(Double value);
  107. /**
  108. * @ejb.persistent-field
  109. * @ejb.interface-method
  110. */
  111. public abstract Long getVersionField();
  112. /**
  113. * @ejb.interface-method
  114. */
  115. public abstract void setVersionField(Long value);
  116. // EntityBean implementation -------------------------
  117. /**
  118. * @ejb.create-method
  119. */
  120. public Integer ejbCreate(Integer id,
  121. String stringGroup1,
  122. Integer integerGroup1,
  123. Double doubleGroup1,
  124. String stringGroup2,
  125. Integer integerGroup2,
  126. Double doubleGroup2)
  127. throws CreateException {
  128. setId(id);
  129. setStringGroup1(stringGroup1);
  130. setIntegerGroup1(integerGroup1);
  131. setDoubleGroup1(doubleGroup1);
  132. setStringGroup2(stringGroup2);
  133. setIntegerGroup2(integerGroup2);
  134. setDoubleGroup2(doubleGroup2);
  135. return null;
  136. }
  137. public void ejbPostCreate(Integer id,
  138. String stringGroup1,
  139. Integer integerGroup1,
  140. Double doubleGroup1,
  141. String stringGroup2,
  142. Integer integerGroup2,
  143. Double doubleGroup2) {
  144. }
  145. public void ejbRemove() throws RemoveException {
  146. }
  147. public void setEntityContext(EntityContext ctx) {
  148. this.ctx = ctx;
  149. }
  150. public void unsetEntityContext() {
  151. this.ctx = null;
  152. }
  153. public void ejbActivate() {
  154. }
  155. public void ejbPassivate() {
  156. }
  157. public void ejbLoad() {
  158. }
  159. public void ejbStore() {
  160. }
  161. }