001 /**
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements. See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership. The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License. You may obtain a copy of the License at
009 *
010 * http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing,
013 * software distributed under the License is distributed on an
014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 * KIND, either express or implied. See the License for the
016 * specific language governing permissions and limitations
017 * under the License.
018 */
019
020 package org.openejb.test.simple.bmp;
021
022 import javax.ejb.EJBException;
023 import javax.ejb.EntityBean;
024 import javax.ejb.EntityContext;
025 import javax.ejb.RemoveException;
026
027 /**
028 *
029 *
030 * @version $Rev: 706640 $ $Date: 2008-10-21 14:44:05 +0000 (Tue, 21 Oct 2008) $
031 */
032 public class SimpleBMPEntityEJB implements EntityBean {
033 private static final Integer PK = new Integer(1);
034 private static String name = "SomeName";
035 private static String value = "SomeValue";
036
037 public Integer ejbCreate() {
038 return PK;
039 }
040
041 public void ejbPostCreate() {
042 }
043
044 public Integer ejbFindByPrimaryKey(Integer key) throws javax.ejb.FinderException {
045 if(PK.equals(key)) {
046 return PK;
047 } else {
048 return null;
049 }
050 }
051
052 public String getName() {
053 return name;
054 }
055
056 public void setName(String name) {
057 SimpleBMPEntityEJB.name = name;
058 }
059
060 public String getValue() {
061 return value;
062 }
063
064 public void setValue(String value) {
065 SimpleBMPEntityEJB.value = value;
066 }
067
068 public void ejbActivate() throws EJBException {
069 }
070
071 public void ejbLoad() throws EJBException {
072 }
073
074 public void ejbPassivate() throws EJBException {
075 }
076
077 public void ejbRemove() throws RemoveException, EJBException {
078 }
079
080 public void ejbStore() throws EJBException {
081 }
082
083 public void setEntityContext(EntityContext ctx) throws EJBException {
084 }
085
086 public void unsetEntityContext() throws EJBException {
087 }
088 }