[Jboss-cvs] JBossAS SVN: r56719 -	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:03:37 EDT 2006
    
    
  
Author: dimitris at jboss.org
Date: 2006-09-11 07:03:35 -0400 (Mon, 11 Sep 2006)
New Revision: 56719
Added:
   trunk/testsuite/src/main/org/jboss/test/cmp2/lob/BlobInfo.java
Log:
Make it compile
Added: trunk/testsuite/src/main/org/jboss/test/cmp2/lob/BlobInfo.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cmp2/lob/BlobInfo.java	2006-09-11 10:55:52 UTC (rev 56718)
+++ trunk/testsuite/src/main/org/jboss/test/cmp2/lob/BlobInfo.java	2006-09-11 11:03:35 UTC (rev 56719)
@@ -0,0 +1,54 @@
+/*
+* 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.io.Serializable;
+
+/**
+ @author Scott.Stark at jboss.org
+ @version $Revision: 37393 $
+ */
+public class BlobInfo implements Serializable
+{
+   private static final long serialVersionUID = 1L;
+
+   private byte[] data = new byte[5500];
+   private int number = 5;
+
+   public byte[] getBytes()
+   {
+      return data;
+   }
+   public void setBytes(byte[] data)
+   {
+      this.data = data;
+   }
+
+   public int getNumber()
+   {
+      return number;
+   }
+   public void setNumber(int n)
+   {
+      this.number = n;
+   }
+}
    
    
More information about the jboss-cvs-commits
mailing list