net.ezcontent.impl.eos.base
Class BaseBinaryData

java.lang.Object
  extended bynet.ezcontent.impl.eos.base.BaseBinaryData
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
BinaryData

public abstract class BaseBinaryData
extends Object
implements Serializable

This is an object that contains data related to the `Blob` table. Do not modify this class because it will be overwritten if the configuration file related to this class is modified. For more information visit The Hibernate Synchronizer page, or contact Joe Hudson

See Also:
Serialized Form

Field Summary
private  int blobID
           
private  byte[] data
           
private  int hashCode
           
private  String mimeType
           
 
Constructor Summary
BaseBinaryData()
           
BaseBinaryData(int blobID)
          Constructor for primary key
 
Method Summary
 boolean equals(Object obj)
           
 int getBlobID()
          Return the unique identifier of this class
 byte[] getData()
           
 String getMimeType()
           
 int hashCode()
           
 void setBlobID(int blobID)
          Set the unique identifier of this class
 void setData(byte[] data)
          Set the value related to the column: data
 void setMimeType(String mimeType)
          Set the value related to the column: mime_type
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hashCode

private int hashCode

blobID

private int blobID

mimeType

private String mimeType

data

private byte[] data
Constructor Detail

BaseBinaryData

public BaseBinaryData()

BaseBinaryData

public BaseBinaryData(int blobID)
Constructor for primary key

Method Detail

getBlobID

public int getBlobID()
Return the unique identifier of this class


setBlobID

public void setBlobID(int blobID)
Set the unique identifier of this class

Parameters:
blobID - the new ID

getMimeType

public String getMimeType()

setMimeType

public void setMimeType(String mimeType)
Set the value related to the column: mime_type

Parameters:
mimeType - the mime_type value

getData

public byte[] getData()

setData

public void setData(byte[] data)
Set the value related to the column: data

Parameters:
data - the data value

equals

public boolean equals(Object obj)

hashCode

public int hashCode()