mirror of https://github.com/apache/openjpa.git
OPENJPA-1085: Add toString() to PCStates
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@826953 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6d6645b7ed
commit
afb95a595f
|
@ -27,6 +27,7 @@ package org.apache.openjpa.kernel;
|
||||||
*
|
*
|
||||||
* @author Steve Kim
|
* @author Steve Kim
|
||||||
*/
|
*/
|
||||||
|
@SuppressWarnings("serial")
|
||||||
class TLoadedState
|
class TLoadedState
|
||||||
extends PCState {
|
extends PCState {
|
||||||
|
|
||||||
|
@ -37,4 +38,8 @@ class TLoadedState
|
||||||
PCState release(StateManagerImpl context) {
|
PCState release(StateManagerImpl context) {
|
||||||
return TRANSIENT;
|
return TRANSIENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String toString() {
|
||||||
|
return "Transient-Loaded";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue