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

http://github.com/jbossas/jboss-as · Java · 132 lines · 24 code · 15 blank · 93 comment · 0 complexity · 807b85f027979b477e99a4e6938eab7e 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.lang.reflect.Field;
  24. import java.sql.PreparedStatement;
  25. import java.sql.ResultSet;
  26. import org.jboss.as.cmp.bridge.CMPFieldBridge;
  27. import org.jboss.as.cmp.jdbc.LockingStrategy;
  28. import org.jboss.as.cmp.context.CmpEntityBeanContext;
  29. /**
  30. * JDBCCMPFieldBridge represents one CMP field. This implementations of
  31. * this interface handles setting are responsible for setting statement
  32. * parameters and loading results for instance values and primary
  33. * keys.
  34. * <p/>
  35. * Life-cycle:
  36. * Tied to the EntityBridge.
  37. * <p/>
  38. * Multiplicity:
  39. * One for each entity bean cmp field.
  40. *
  41. * @author <a href="mailto:dain@daingroup.com">Dain Sundstrom</a>
  42. * @author <a href="mailto:loubyansky@hotmail.com">Alex Loubyansky</a>
  43. * @version $Revision: 81030 $
  44. */
  45. public interface JDBCCMPFieldBridge extends CMPFieldBridge {
  46. /**
  47. * The index of the field among the table fields.
  48. */
  49. int getTableIndex();
  50. /**
  51. * Returns the default field flags.
  52. */
  53. byte getDefaultFlags();
  54. /**
  55. * TODO: Get rid of it
  56. *
  57. * @param flag
  58. */
  59. void addDefaultFlag(byte flag);
  60. /**
  61. * @param ctx instance's context
  62. * @return field value that was locked.
  63. */
  64. Object getLockedValue(CmpEntityBeanContext ctx);
  65. /**
  66. * Optimistically locks field value.
  67. */
  68. void lockInstanceValue(CmpEntityBeanContext ctx);
  69. /**
  70. * @param lockingStrategy locking strategy assigned to the field
  71. */
  72. void setLockingStrategy(LockingStrategy lockingStrategy);
  73. /**
  74. * Gets the field of the primary key object in which the value of this
  75. * field is stored.
  76. */
  77. Field getPrimaryKeyField();
  78. /**
  79. * Gets the value of this field in the specified primaryKey object.
  80. *
  81. * @param primaryKey the primary key object from which this fields value
  82. * will be extracted
  83. * @return the value of this field in the primaryKey object
  84. */
  85. Object getPrimaryKeyValue(Object primaryKey)
  86. throws IllegalArgumentException;
  87. /**
  88. * @return true if the field belongs to a relation table
  89. */
  90. boolean isRelationTableField();
  91. /**
  92. * Sets the value of this field to the specified value in the
  93. * specified primaryKey object.
  94. *
  95. * @param primaryKey the primary key object which the value
  96. * will be inserted
  97. * @param value the value for field that will be set in the pk
  98. * @return the updated primary key object; the actual object may
  99. * change not just the value
  100. */
  101. Object setPrimaryKeyValue(Object primaryKey, Object value)
  102. throws IllegalArgumentException;
  103. /**
  104. * Sets the prepared statement parameters with the data from the
  105. * primary key.
  106. */
  107. int setPrimaryKeyParameters(PreparedStatement ps, int parameterIndex, Object primaryKey) throws IllegalArgumentException;
  108. /**
  109. * Sets the prepared statement parameters with the data from the
  110. * object. The object must be the type of this field.
  111. */
  112. int setArgumentParameters(PreparedStatement ps, int parameterIndex, Object arg);
  113. /**
  114. * Loads the data from result set into the primary key object.
  115. */
  116. int loadPrimaryKeyResults(ResultSet rs, int parameterIndex, Object[] pkRef) throws IllegalArgumentException;
  117. }