mirror of https://github.com/apache/openjpa.git
OPENJPA-2099: simple doc change
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1236281 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e37a589072
commit
7def6f8a67
openjpa-jdbc/src/main/java/org/apache/openjpa/jdbc/sql
openjpa-lib/src/main/java/org/apache/openjpa/lib/util
|
@ -43,7 +43,7 @@ import org.apache.openjpa.lib.util.FlexibleThreadLocal;
|
|||
* @see SQLBuffer#bind(Object, Column)
|
||||
*
|
||||
* @author Pinaki Poddar
|
||||
*
|
||||
* @since 2.2.0
|
||||
*/
|
||||
public class BindParameter {
|
||||
// Is this parameter specified by user or our own runtime
|
||||
|
@ -109,5 +109,4 @@ public class BindParameter {
|
|||
public Object getKey() {
|
||||
return _key;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -25,13 +25,14 @@ import java.util.Map;
|
|||
* A thread-specific storage similar to {@link ThreadLocal}.
|
||||
*
|
||||
* @author Pinaki Poddar
|
||||
*
|
||||
* @since 2.2.0
|
||||
*/
|
||||
public class FlexibleThreadLocal<T> {
|
||||
private final Map<Thread, T> _values = new HashMap<Thread, T>();
|
||||
|
||||
/**
|
||||
* Gets the value associated with the calling thread or its equivalent.
|
||||
* Gets the value associated with the calling thread or its
|
||||
* {@link #isEquivalent(Thread, Thread) equivalent}.
|
||||
*
|
||||
* @see #isEquivalent(Thread, Thread)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue