/server/src/main/org/jboss/ejb/plugins/cmp/jdbc/bridge/JDBCCMPFieldBridge.java

https://github.com/navssurtani/JBossAS51 · Java · 132 lines · 25 code · 16 blank · 91 comment · 0 complexity · 6c21cd6fa68f0db0ec39a1282a9af3bb 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.ejb.plugins.cmp.jdbc.bridge;
  23. import java.lang.reflect.Field;
  24. import java.sql.PreparedStatement;
  25. import java.sql.ResultSet;
  26. import org.jboss.ejb.plugins.cmp.bridge.CMPFieldBridge;
  27. import org.jboss.ejb.plugins.cmp.jdbc.LockingStrategy;
  28. import org.jboss.ejb.EntityEnterpriseContext;
  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. *
  35. * Life-cycle:
  36. * Tied to the EntityBridge.
  37. *
  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. *
  44. * @version $Revision: 81030 $
  45. */
  46. public interface JDBCCMPFieldBridge extends CMPFieldBridge
  47. {
  48. /**
  49. * The index of the field among the table fields.
  50. */
  51. int getTableIndex();
  52. /**
  53. * Returns the default field flags.
  54. */
  55. byte getDefaultFlags();
  56. /**
  57. * TODO: Get rid of it
  58. * @param flag
  59. */
  60. void addDefaultFlag(byte flag);
  61. /**
  62. * @param ctx instance's context
  63. * @return field value that was locked.
  64. */
  65. Object getLockedValue(EntityEnterpriseContext ctx);
  66. /**
  67. * Optimistically locks field value.
  68. */
  69. public void lockInstanceValue(EntityEnterpriseContext ctx);
  70. /**
  71. * @param lockingStrategy locking strategy assigned to the field
  72. */
  73. void setLockingStrategy(LockingStrategy lockingStrategy);
  74. /**
  75. * Gets the field of the primary key object in which the value of this
  76. * field is stored.
  77. */
  78. public Field getPrimaryKeyField();
  79. /**
  80. * Gets the value of this field in the specified primaryKey object.
  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. public 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. * @param primaryKey the primary key object which the value
  95. * will be inserted
  96. * @param value the value for field that will be set in the pk
  97. * @return the updated primary key object; the actual object may
  98. * change not just the value
  99. */
  100. public Object setPrimaryKeyValue(Object primaryKey, Object value)
  101. throws IllegalArgumentException;
  102. /**
  103. * Sets the prepared statement parameters with the data from the
  104. * primary key.
  105. */
  106. public int setPrimaryKeyParameters(PreparedStatement ps, int parameterIndex, Object primaryKey) throws IllegalArgumentException;
  107. /**
  108. * Sets the prepared statement parameters with the data from the
  109. * object. The object must be the type of this field.
  110. */
  111. public int setArgumentParameters(PreparedStatement ps, int parameterIndex, Object arg);
  112. /**
  113. * Loads the data from result set into the primary key object.
  114. */
  115. public int loadPrimaryKeyResults(ResultSet rs, int parameterIndex, Object[] pkRef) throws IllegalArgumentException;
  116. }