/**
 * 
 */
package net.sourceforge.fenixedu.util;

/**
 * @author - Shezad Anavarali (shezad@ist.utl.pt)
 *
 */
public class ByteArray {
    
    private byte[] bytes;

    public ByteArray(byte[] value) {        
        this.bytes = value;
    }

    public byte[] getBytes() {
        return bytes;
    }

    public void setBytes(byte[] bytes) {
        this.bytes = bytes;
    }
        
}
