[jboss-cvs] JBossCache/tests-50/functional/org/jboss/cache/aop/test ...
Ben Wang
bwang at jboss.com
Thu Nov 16 02:51:35 EST 2006
User: bwang
Date: 06/11/16 02:51:35
Modified: tests-50/functional/org/jboss/cache/aop/test Tag:
Branch_JBossCache_1_4_0 Resource.java
Log:
upd
Revision Changes Path
No revision
No revision
1.1.2.1 +12 -0 JBossCache/tests-50/functional/org/jboss/cache/aop/test/Attic/Resource.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Resource.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/tests-50/functional/org/jboss/cache/aop/test/Attic/Resource.java,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -b -r1.1 -r1.1.2.1
--- Resource.java 13 Apr 2006 17:25:08 -0000 1.1
+++ Resource.java 16 Nov 2006 07:51:35 -0000 1.1.2.1
@@ -12,12 +12,14 @@
* type that can be declared @Transient. That is, it is neither PojoCacheable nor
* Serializable.
*
- * @version $Revision: 1.1 $
+ * @version $Revision: 1.1.2.1 $
*/
+ at org.jboss.cache.aop.annotation.PojoCacheable
public class Resource
{
String connection = null;
String name = null;
+ byte[] bin = null;
public String getName() {
return name;
@@ -35,6 +37,16 @@
this.connection = connection;
}
+ public byte[] getByte()
+ {
+ return bin;
+ }
+
+ public void setByte(byte[] b)
+ {
+ bin = b;
+ }
+
public String toString()
{
return "name=" + getName() + ", type=" + getConnection();
More information about the jboss-cvs-commits
mailing list