01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.openejb.test.entity.cmr.manytomany;
17:
18: import java.util.Set;
19: import javax.ejb.CreateException;
20: import javax.ejb.EntityBean;
21: import javax.ejb.EntityContext;
22: import javax.ejb.RemoveException;
23:
24: import org.apache.openejb.test.entity.cmr.CompoundPK;
25:
26: /**
27: * @version $Revision: 607077 $ $Date: 2007-12-27 06:55:23 -0800 $
28: */
29: public abstract class PlatformBean implements EntityBean {
30: // CMP
31: public abstract Integer getId();
32:
33: public abstract void setId(Integer id);
34:
35: public abstract String getName();
36:
37: public abstract void setName(String name);
38:
39: // CMR
40: public abstract Set<GameLocal> getGames();
41:
42: public abstract void setGames(Set<GameLocal> gameSets);
43:
44: public Integer ejbCreate(Integer id) throws CreateException {
45: setId(id);
46: return null;
47: }
48:
49: public void ejbPostCreate(Integer id) {
50: }
51:
52: public CompoundPK ejbCreate(PlatformPk primaryKey)
53: throws CreateException {
54: setId(primaryKey.id);
55: setName(primaryKey.name);
56: return null;
57: }
58:
59: public void ejbPostCreate(PlatformPk primaryKey) {
60: }
61:
62: public void setEntityContext(EntityContext ctx) {
63: }
64:
65: public void unsetEntityContext() {
66: }
67:
68: public void ejbActivate() {
69: }
70:
71: public void ejbPassivate() {
72: }
73:
74: public void ejbLoad() {
75: }
76:
77: public void ejbStore() {
78: }
79:
80: public void ejbRemove() throws RemoveException {
81: }
82:
83: public String toString() {
84: return "[Platform " + getId() + " name " + getName() + "]";
85: }
86: }
|