[Jboss-cvs] JBossAS SVN: r56720 - trunk/testsuite/src/main/org/jboss/test/cmp2/lob

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Sep 11 07:25:46 EDT 2006


Author: dimitris at jboss.org
Date: 2006-09-11 07:25:43 -0400 (Mon, 11 Sep 2006)
New Revision: 56720

Modified:
   trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOB.java
   trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOBBean.java
   trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOBHome.java
Log:
Make it compile

Modified: trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOB.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOB.java	2006-09-11 11:03:35 UTC (rev 56719)
+++ trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOB.java	2006-09-11 11:25:43 UTC (rev 56720)
@@ -1,24 +1,24 @@
 /*
-  * JBoss, Home of Professional Open Source
-  * Copyright 2005, JBoss Inc., and individual contributors as indicated
-  * by the @authors tag. See the copyright.txt in the distribution for a
-  * full listing of individual contributors.
-  *
-  * This is free software; you can redistribute it and/or modify it
-  * under the terms of the GNU Lesser General Public License as
-  * published by the Free Software Foundation; either version 2.1 of
-  * the License, or (at your option) any later version.
-  *
-  * This software is distributed in the hope that it will be useful,
-  * but WITHOUT ANY WARRANTY; without even the implied warranty of
-  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  * Lesser General Public License for more details.
-  *
-  * You should have received a copy of the GNU Lesser General Public
-  * License along with this software; if not, write to the Free
-  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-  */
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
 package org.jboss.test.cmp2.lob;
 
 import java.rmi.RemoteException;
@@ -78,6 +78,9 @@
     */
    public void setBinaryData(byte[] data) throws RemoteException;
 
+   public Object getObjectField() throws RemoteException;
+   public void setObjectField(Object obj) throws RemoteException;
+
    Map getMapField() throws RemoteException;
    void setMapField(Map map) throws RemoteException;
 

Modified: trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOBBean.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOBBean.java	2006-09-11 11:03:35 UTC (rev 56719)
+++ trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOBBean.java	2006-09-11 11:25:43 UTC (rev 56720)
@@ -1,24 +1,24 @@
 /*
-  * JBoss, Home of Professional Open Source
-  * Copyright 2005, JBoss Inc., and individual contributors as indicated
-  * by the @authors tag. See the copyright.txt in the distribution for a
-  * full listing of individual contributors.
-  *
-  * This is free software; you can redistribute it and/or modify it
-  * under the terms of the GNU Lesser General Public License as
-  * published by the Free Software Foundation; either version 2.1 of
-  * the License, or (at your option) any later version.
-  *
-  * This software is distributed in the hope that it will be useful,
-  * but WITHOUT ANY WARRANTY; without even the implied warranty of
-  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  * Lesser General Public License for more details.
-  *
-  * You should have received a copy of the GNU Lesser General Public
-  * License along with this software; if not, write to the Free
-  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-  */
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
 package org.jboss.test.cmp2.lob;
 
 import javax.ejb.EntityBean;
@@ -86,6 +86,9 @@
 	 */
    public abstract void setBinaryData(byte[] data);
 
+   public abstract Object getObjectField();
+   public abstract void setObjectField(Object obj);
+
    public abstract Map getMapField();
    public abstract void setMapField(Map map);
 
@@ -104,6 +107,7 @@
    public abstract ValueHolder getStateFactoryValueHolder();
    public abstract void setStateFactoryValueHolder(ValueHolder valueHolder);
 
+   
    // EntityBean implementation
 
    public Integer ejbCreate(Integer id) throws CreateException

Modified: trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOBHome.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOBHome.java	2006-09-11 11:03:35 UTC (rev 56719)
+++ trunk/testsuite/src/main/org/jboss/test/cmp2/lob/LOBHome.java	2006-09-11 11:25:43 UTC (rev 56720)
@@ -1,24 +1,24 @@
 /*
-  * JBoss, Home of Professional Open Source
-  * Copyright 2005, JBoss Inc., and individual contributors as indicated
-  * by the @authors tag. See the copyright.txt in the distribution for a
-  * full listing of individual contributors.
-  *
-  * This is free software; you can redistribute it and/or modify it
-  * under the terms of the GNU Lesser General Public License as
-  * published by the Free Software Foundation; either version 2.1 of
-  * the License, or (at your option) any later version.
-  *
-  * This software is distributed in the hope that it will be useful,
-  * but WITHOUT ANY WARRANTY; without even the implied warranty of
-  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  * Lesser General Public License for more details.
-  *
-  * You should have received a copy of the GNU Lesser General Public
-  * License along with this software; if not, write to the Free
-  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-  */
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
 package org.jboss.test.cmp2.lob;
 
 import java.rmi.RemoteException;




More information about the jboss-cvs-commits mailing list