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: /**
25: * @version $Revision: 607077 $ $Date: 2007-12-27 06:55:23 -0800 $
26: */
27: public abstract class GameBean implements EntityBean {
28: // CMP
29: public abstract Integer getId();
30:
31: public abstract void setId(Integer id);
32:
33: public abstract String getName();
34:
35: public abstract void setName(String name);
36:
37: public abstract Integer getRating();
38:
39: public abstract void setRating(Integer rating);
40:
41: // CMR
42: public abstract Set<PlatformLocal> getPlatforms();
43:
44: public abstract void setPlatforms(Set<PlatformLocal> platforms);
45:
46: public Integer ejbCreate(Integer id) throws CreateException {
47: setId(id);
48: return null;
49: }
50:
51: public void ejbPostCreate(Integer id) {
52: }
53:
54: public Integer ejbCreate(GamePk gamePk) throws CreateException {
55: setId(gamePk.id);
56: setName(gamePk.name);
57: return null;
58: }
59:
60: public void ejbPostCreate(GamePk gamePk) {
61: }
62:
63: public void setEntityContext(EntityContext ctx) {
64: }
65:
66: public void unsetEntityContext() {
67: }
68:
69: public void ejbActivate() {
70: }
71:
72: public void ejbPassivate() {
73: }
74:
75: public void ejbLoad() {
76: }
77:
78: public void ejbStore() {
79: }
80:
81: public void ejbRemove() throws RemoveException {
82: }
83:
84: public String toString() {
85: return "[Game " + getId() + " name " + getName() + "]";
86: }
87: }
|