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.onetomany;
17:
18: import javax.ejb.CreateException;
19: import javax.ejb.EntityBean;
20: import javax.ejb.EntityContext;
21: import javax.ejb.RemoveException;
22:
23: import org.apache.openejb.test.entity.cmr.CompoundPK;
24:
25: /**
26: *
27: * @version $Revision: 607077 $ $Date: 2007-12-27 06:55:23 -0800 $
28: */
29: public abstract class SongBean 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: public abstract Integer getBpm();
40:
41: public abstract void setBpm(Integer bpm);
42:
43: public abstract String getDescription();
44:
45: public abstract void setDescription(String description);
46:
47: // CMR
48: public abstract ArtistLocal getPerformer();
49:
50: public abstract void setPerformer(ArtistLocal performer);
51:
52: public abstract ArtistLocal getComposer();
53:
54: public abstract void setComposer(ArtistLocal composer);
55:
56: public Integer ejbCreate(Integer id) throws CreateException {
57: setId(id);
58: return null;
59: }
60:
61: public void ejbPostCreate(Integer id) {
62: }
63:
64: public CompoundPK ejbCreate(SongPk primaryKey)
65: throws CreateException {
66: setId(primaryKey.id);
67: setName(primaryKey.name);
68: return null;
69: }
70:
71: public void ejbPostCreate(SongPk primaryKey) {
72: }
73:
74: public void setEntityContext(EntityContext ctx) {
75: }
76:
77: public void unsetEntityContext() {
78: }
79:
80: public void ejbActivate() {
81: }
82:
83: public void ejbPassivate() {
84: }
85:
86: public void ejbLoad() {
87: }
88:
89: public void ejbStore() {
90: }
91:
92: public void ejbRemove() throws RemoveException {
93: }
94: }
|