01: // ================================================================
02: // Copyright (c) 2000-2005 CollabNet. All rights reserved.
03: //
04: // Redistribution and use in source and binary forms, with or without
05: // modification, are permitted provided that the following conditions are
06: // met:
07: //
08: // 1. Redistributions of source code must retain the above copyright
09: // notice, this list of conditions and the following disclaimer.
10: //
11: // 2. Redistributions in binary form must reproduce the above copyright
12: // notice, this list of conditions and the following disclaimer in the
13: // documentation and/or other materials provided with the distribution.
14: //
15: // 3. The end-user documentation included with the redistribution, if
16: // any, must include the following acknowlegement: "This product includes
17: // software developed by Collab.Net <http://www.Collab.Net/>."
18: // Alternately, this acknowlegement may appear in the software itself, if
19: // and wherever such third-party acknowlegements normally appear.
20: //
21: // 4. The hosted project names must not be used to endorse or promote
22: // products derived from this software without prior written
23: // permission. For written permission, please contact info@collab.net.
24: //
25: // 5. Products derived from this software may not use the "Tigris" or
26: // "Scarab" names nor may "Tigris" or "Scarab" appear in their names without
27: // prior written permission of Collab.Net.
28: //
29: // THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
30: // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
31: // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32: // IN NO EVENT SHALL COLLAB.NET OR ITS CONTRIBUTORS BE LIABLE FOR ANY
33: // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34: // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
35: // GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36: // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
37: // IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
38: // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
39: // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40: //
41: // ====================================================================
42: //
43: // This software consists of voluntary contributions made by many
44: // individuals on behalf of Collab.Net.
45: package org.tigris.scarab.om;
46:
47: // Turbine classes
48: import org.apache.torque.TorqueException;
49: import org.apache.torque.om.ObjectKey;
50:
51: // Scarab classes
52: import org.tigris.scarab.services.cache.ScarabCache;
53:
54: /**
55: * You should add additional methods to this class to meet the
56: * application requirements. This class will only be generated as
57: * long as it does not already exist in the output directory.
58: */
59: public class AttributeGroupPeer extends BaseAttributeGroupPeer {
60: private static final String ATTRIBUTEGROUP_PEER = "AttributeGroupPeer";
61: private static final String RETRIEVE_BY_PK = "retrieveByPK";
62:
63: /**
64: * Retrieve a single object by pk
65: *
66: * @param ObjectKey pk
67: */
68: public static AttributeGroup retrieveByPK(ObjectKey pk)
69: throws TorqueException {
70: AttributeGroup result = null;
71: Object obj = ScarabCache.get(ATTRIBUTEGROUP_PEER,
72: RETRIEVE_BY_PK, pk);
73: if (obj == null) {
74: result = BaseAttributeGroupPeer.retrieveByPK(pk);
75: ScarabCache.put(result, ATTRIBUTEGROUP_PEER,
76: RETRIEVE_BY_PK, pk);
77: } else {
78: result = (AttributeGroup) obj;
79: }
80: return result;
81: }
82: }
|