KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > jdo > spi > persistence > support > sqlstore > state > PersistentNew


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 /*
25  * PersistentNew.java March 10, 2000 Steffi Rauschenbach
26  */

27
28 package com.sun.jdo.spi.persistence.support.sqlstore.state;
29
30 import com.sun.jdo.spi.persistence.utility.I18NHelper;
31 import com.sun.jdo.spi.persistence.support.sqlstore.ActionDesc;
32
33 import java.util.ResourceBundle JavaDoc;
34
35 public class PersistentNew extends LifeCycleState {
36     /**
37      * I18N message handler
38      */

39     private final static ResourceBundle JavaDoc messages = I18NHelper.loadBundle(
40             "com.sun.jdo.spi.persistence.support.sqlstore.Bundle", // NOI18N
41
PersistentNew.class.getClassLoader());
42
43     public PersistentNew() {
44         // these flags are set only in the constructor
45
// and shouldn't be changed afterwards
46
// (cannot make them final since they are declared in superclass
47
// but their values are specific to subclasses)
48
isPersistent = true;
49         isPersistentInDataStore = false;
50         isTransactional = true;
51         isDirty = true;
52         isNew = true;
53         isDeleted = false;
54         isNavigable = false;
55         isRefreshable = false;
56         isBeforeImageUpdatable = false;
57         needsRegister = true;
58         needsReload = false;
59         needsRestoreOnRollback = true;
60         updateAction = ActionDesc.LOG_CREATE;
61
62         stateType = P_NEW;
63     }
64
65
66     public LifeCycleState transitionDeletePersistent() {
67         return changeState(P_NEW_DELETED);
68     }
69
70
71     public LifeCycleState transitionFlushed() {
72         return changeState(P_NEW_FLUSHED);
73     }
74
75     public LifeCycleState transitionCommit(boolean retainValues) {
76         if (retainValues) {
77             return changeState(P_NON_TX);
78         } else {
79             return changeState(HOLLOW);
80         }
81     }
82
83     public LifeCycleState transitionRollback(boolean retainValues) {
84         return changeState(TRANSIENT);
85     }
86
87     public boolean needsRestoreOnRollback(boolean retainValues) {
88         //
89
// This is a special case where retores doesn't depend on
90
// retainValues.
91
//
92
return needsRestoreOnRollback;
93     }
94 }
95
96
97
98
99
100
101
102
103
104
105
Popular Tags