001: package org.tigris.scarab.om;
002:
003: import java.math.BigDecimal;
004: import java.util.Date;
005: import java.util.List;
006:
007: import org.apache.torque.Torque;
008: import org.apache.torque.TorqueException;
009: import org.apache.torque.manager.AbstractBaseManager;
010: import org.apache.torque.manager.CacheListener;
011: import org.apache.torque.manager.MethodResultCache;
012: import org.apache.torque.om.ObjectKey;
013: import org.apache.torque.om.SimpleKey;
014: import org.apache.torque.om.Persistent;
015: import org.apache.torque.util.Criteria;
016:
017: /**
018: * This class manages PendingGroupUserRole objects.
019: * This class was autogenerated by Torque *
020: * You should not use this class directly. It should not even be
021: * extended all references should be to PendingGroupUserRoleManager
022: */
023: public abstract class BasePendingGroupUserRoleManager extends
024: AbstractBaseManager {
025: /** The name of the manager */
026: protected static final String MANAGED_CLASS = "org.tigris.scarab.om.PendingGroupUserRole";
027:
028: /** The name of our class to pass to Torque as the default manager. */
029: protected static final String DEFAULT_MANAGER_CLASS = "org.tigris.scarab.om.PendingGroupUserRoleManager";
030:
031: /**
032: * Retrieves an implementation of the manager, based on the settings in
033: * the configuration.
034: *
035: * @return an implementation of PendingGroupUserRoleManager.
036: */
037: public static PendingGroupUserRoleManager getManager() {
038: return (PendingGroupUserRoleManager) Torque.getManager(
039: PendingGroupUserRoleManager.MANAGED_CLASS,
040: PendingGroupUserRoleManager.DEFAULT_MANAGER_CLASS);
041: }
042:
043: /**
044: * Static accessor for the @see #getInstanceImpl().
045: *
046: * @return a <code>PendingGroupUserRole</code> value
047: * @exception TorqueException if an error occurs
048: */
049: public static PendingGroupUserRole getInstance()
050: throws TorqueException {
051: return getManager().getInstanceImpl();
052: }
053:
054: /**
055: * Static accessor for the @see #getInstanceImpl(ObjectKey).
056: *
057: * @param id an <code>ObjectKey</code> value
058: * @return a <code>PendingGroupUserRole</code> value
059: * @exception TorqueException if an error occurs
060: */
061: public static PendingGroupUserRole getInstance(ObjectKey id)
062: throws TorqueException {
063: return getManager().getInstanceImpl(id);
064: }
065:
066: /**
067: * Static accessor for the @see #getCachedInstanceImpl(ObjectKey).
068: * Loads <code>PendingGroupUserRole</code> from cache, returns
069: * <code>null</code>, if instance is not in cache
070: *
071: * @param id an <code>ObjectKey</code> value
072: * @return a <code>PendingGroupUserRole</code> value
073: * @exception TorqueException if an error occurs
074: */
075: public static PendingGroupUserRole getCachedInstance(ObjectKey id)
076: throws TorqueException {
077: return getManager().getCachedInstanceImpl(id);
078: }
079:
080: /**
081: * Static accessor for the @see #getInstanceImpl(ObjectKey, boolean).
082: *
083: * @param id an <code>ObjectKey</code> value
084: * @param fromCache if true, look for cached PendingGroupUserRoles before loading
085: * from storage.
086: * @return a <code>PendingGroupUserRole</code> value
087: * @exception TorqueException if an error occurs
088: */
089: public static PendingGroupUserRole getInstance(ObjectKey id,
090: boolean fromCache) throws TorqueException {
091: return getManager().getInstanceImpl(id, fromCache);
092: }
093:
094: /**
095: * Static accessor for the @see #getInstancesImpl(List).
096: *
097: * @param ids a <code>List</code> value
098: * @return a <code>List</code> value
099: * @exception TorqueException if an error occurs
100: */
101: public static List getInstances(List ids) throws TorqueException {
102: return getManager().getInstancesImpl(ids);
103: }
104:
105: /**
106: * Static accessor for the @see #getInstancesImpl(List, boolean).
107: *
108: * @param ids a <code>List</code> value
109: * @param fromCache if true, look for cached PendingGroupUserRoles before loading
110: * from storage.
111: * @return a <code>List</code> value
112: * @exception TorqueException if an error occurs
113: */
114: public static List getInstances(List ids, boolean fromCache)
115: throws TorqueException {
116: return getManager().getInstancesImpl(ids, fromCache);
117: }
118:
119: public static void putInstance(Persistent om)
120: throws TorqueException {
121: getManager().putInstanceImpl(om);
122: }
123:
124: public static void clear() throws TorqueException {
125: getManager().clearImpl();
126: }
127:
128: public static boolean exists(PendingGroupUserRole obj)
129: throws TorqueException {
130: return getManager().existsImpl(obj);
131: }
132:
133: public static MethodResultCache getMethodResult() {
134: return getManager().getMethodResultCache();
135: }
136:
137: public static void addCacheListener(CacheListener listener) {
138: getManager().addCacheListenerImpl(listener);
139: }
140:
141: /**
142: * Creates a new <code>BasePendingGroupUserRoleManager</code> instance.
143: *
144: * @exception TorqueException if an error occurs
145: */
146: public BasePendingGroupUserRoleManager() throws TorqueException {
147: setClassName("org.tigris.scarab.om.PendingGroupUserRole");
148: }
149:
150: /**
151: * Get a fresh instance of a PendingGroupUserRoleManager
152: */
153: protected PendingGroupUserRole getInstanceImpl()
154: throws TorqueException {
155: PendingGroupUserRole obj = null;
156: try {
157: obj = (PendingGroupUserRole) getOMInstance();
158: } catch (Exception e) {
159: throw new TorqueException(e);
160: }
161: return obj;
162: }
163:
164: /**
165: * Get a PendingGroupUserRole with the given id.
166: *
167: * @param id <code>ObjectKey</code> value
168: */
169: protected PendingGroupUserRole getInstanceImpl(ObjectKey id)
170: throws TorqueException {
171: return (PendingGroupUserRole) getOMInstance(id);
172: }
173:
174: /**
175: * Get a PendingGroupUserRole with the given id from the cache. Returns
176: * <code>null</code> if instance is not in cache
177: *
178: * @param id <code>ObjectKey</code> value
179: */
180: protected PendingGroupUserRole getCachedInstanceImpl(ObjectKey id)
181: throws TorqueException {
182: return (PendingGroupUserRole) cacheGet(id);
183: }
184:
185: /**
186: * Get a PendingGroupUserRole with the given id.
187: *
188: * @param id <code>ObjectKey</code> value
189: * @param fromCache if true, look for cached PendingGroupUserRoles before loading
190: * from storage.
191: */
192: protected PendingGroupUserRole getInstanceImpl(ObjectKey id,
193: boolean fromCache) throws TorqueException {
194: return (PendingGroupUserRole) getOMInstance(id, fromCache);
195: }
196:
197: /**
198: * Gets a list of PendingGroupUserRoles based on id's.
199: *
200: * @param ids a List of <code>ObjectKeys</code> value
201: * @return a <code>List</code> of PendingGroupUserRoles
202: * @exception TorqueException if an error occurs
203: */
204: protected List getInstancesImpl(List ids) throws TorqueException {
205: return getOMs(ids);
206: }
207:
208: /**
209: * Gets a list of PendingGroupUserRoles based on id's.
210: *
211: * @param ids a List of <code>ObjectKeys</code> value
212: * @param fromCache if true, look for cached PendingGroupUserRoles before loading
213: * from storage.
214: * @return a <code>List</code> of PendingGroupUserRoles
215: * @exception TorqueException if an error occurs
216: */
217: protected List getInstancesImpl(List ids, boolean fromCache)
218: throws TorqueException {
219: return getOMs(ids, fromCache);
220: }
221:
222: /**
223: * check for a duplicate project name
224: */
225: protected boolean existsImpl(PendingGroupUserRole om)
226: throws TorqueException {
227: Criteria crit = PendingGroupUserRolePeer
228: .buildCriteria((PendingGroupUserRole) om);
229: return PendingGroupUserRolePeer.doSelect(crit).size() > 0;
230: }
231:
232: protected Persistent retrieveStoredOM(ObjectKey id)
233: throws TorqueException {
234: return PendingGroupUserRolePeer.retrieveByPK(id);
235: }
236:
237: /**
238: * Gets a list of ModuleEntities based on id's.
239: *
240: * @param ids a <code>NumberKey[]</code> value
241: * @return a <code>List</code> value
242: * @exception TorqueException if an error occurs
243: */
244: protected List retrieveStoredOMs(List ids) throws TorqueException {
245: return PendingGroupUserRolePeer.retrieveByPKs(ids);
246: }
247: }
|