KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > infoglue > cms > util > workflow > hibernate > InfogluePropertySetItemImpl


1 package org.infoglue.cms.util.workflow.hibernate;
2
3 import com.opensymphony.module.propertyset.hibernate.PropertySetItemImpl;
4
5
6 /**
7  * Quickfix
8  */

9 public class InfogluePropertySetItemImpl extends PropertySetItemImpl implements InfogluePropertySetItem {
10     /**
11      *
12      */

13     private static final long serialVersionUID = 3905527111610348337L;
14     
15     /**
16      *
17      */

18     private byte[] dataVal;
19
20     /**
21      *
22      */

23     public InfogluePropertySetItemImpl() {
24         super();
25     }
26
27     /**
28      *
29      */

30     public InfogluePropertySetItemImpl(String JavaDoc entityName, long entityId, String JavaDoc key) {
31         super(entityName, entityId, key);
32     }
33
34     /**
35      *
36      */

37     public void setDataVal(byte[] dataVal) {
38         this.dataVal = dataVal;
39     }
40
41     /**
42      *
43      */

44     public byte[] getDataVal() {
45         return dataVal;
46     }
47 }
48
Popular Tags