/* * This class was automatically generated with * Castor 1.1, using an XML * Schema. * $Id$ */ package it.carige.nefin.datadictionary; /** * Class Allegato. * * @version $Revision$ $Date$ */ public class Allegato implements java.io.Serializable { //--------------------------/ //- Class/Member Variables -/ //--------------------------/ /** * Global Unique Identifier: garanitisce per l' identificazione * dell'allegato */ private java.lang.String _guid; /** * il tipo dell'allegato (es: TIFF, JPG, TXT...) */ private java.lang.String _tipo; /** * rappresentazione binaria del documento */ private byte[] _documento; //----------------/ //- Constructors -/ //----------------/ public Allegato() { super(); } //-----------/ //- Methods -/ //-----------/ /** * Returns the value of field 'documento'. The field * 'documento' has the following description: rappresentazione * binaria del documento * * @return the value of field 'Documento'. */ public byte[] getDocumento( ) { return this._documento; } /** * Returns the value of field 'guid'. The field 'guid' has the * following description: Global Unique Identifier: garanitisce * per l' identificazione dell'allegato * * @return the value of field 'Guid'. */ public java.lang.String getGuid( ) { return this._guid; } /** * Returns the value of field 'tipo'. The field 'tipo' has the * following description: il tipo dell'allegato (es: TIFF, JPG, * TXT...) * * @return the value of field 'Tipo'. */ public java.lang.String getTipo( ) { return this._tipo; } /** * Sets the value of field 'documento'. The field 'documento' * has the following description: rappresentazione binaria del * documento * * @param documento the value of field 'documento'. */ public void setDocumento( final byte[] documento) { this._documento = documento; } /** * Sets the value of field 'guid'. The field 'guid' has the * following description: Global Unique Identifier: garanitisce * per l' identificazione dell'allegato * * @param guid the value of field 'guid'. */ public void setGuid( final java.lang.String guid) { this._guid = guid; } /** * Sets the value of field 'tipo'. The field 'tipo' has the * following description: il tipo dell'allegato (es: TIFF, JPG, * TXT...) * * @param tipo the value of field 'tipo'. */ public void setTipo( final java.lang.String tipo) { this._tipo = tipo; } }