refactored org to uk
[vamsas.git] / src / uk / ac / vamsas / objects / core / Attachment.java
diff --git a/src/uk/ac/vamsas/objects/core/Attachment.java b/src/uk/ac/vamsas/objects/core/Attachment.java
new file mode 100644 (file)
index 0000000..d0ed365
--- /dev/null
@@ -0,0 +1,330 @@
+/*\r
+ * This class was automatically generated with \r
+ * <a href="http://www.castor.org">Castor 0.9.9M2</a>, using an XML\r
+ * Schema.\r
+ * $Id$\r
+ */\r
+\r
+package uk.ac.vamsas.objects.core;\r
+\r
+  //---------------------------------/\r
+ //- Imported classes and packages -/\r
+//---------------------------------/\r
+\r
+import java.io.IOException;\r
+import java.io.Reader;\r
+import java.io.Serializable;\r
+import java.io.Writer;\r
+import org.exolab.castor.xml.MarshalException;\r
+import org.exolab.castor.xml.Marshaller;\r
+import org.exolab.castor.xml.Unmarshaller;\r
+import org.exolab.castor.xml.ValidationException;\r
+import org.xml.sax.ContentHandler;\r
+\r
+/**\r
+ * Class Attachment.\r
+ * \r
+ * @version $Revision$ $Date$\r
+ */\r
+public class Attachment extends uk.ac.vamsas.objects.core.AppData \r
+implements java.io.Serializable\r
+{\r
+\r
+\r
+      //--------------------------/\r
+     //- Class/Member Variables -/\r
+    //--------------------------/\r
+\r
+    /**\r
+     * true implies data will be decompresses with Zip\r
+     *  before presenting to application \r
+     */\r
+    private boolean _compressed = false;\r
+\r
+    /**\r
+     * keeps track of state for field: _compressed\r
+     */\r
+    private boolean _has_compressed;\r
+\r
+    /**\r
+     * Type of arbitrary data - TODO: decide format - use\r
+     *  (extended) MIME types ? \r
+     */\r
+    private java.lang.String _type;\r
+\r
+    /**\r
+     * Object the arbitrary data is associated with\r
+     *  \r
+     */\r
+    private java.lang.Object _objectref;\r
+\r
+    /**\r
+     * Primary Key for vamsas object referencing\r
+     *  \r
+     */\r
+    private java.lang.String _id;\r
+\r
+\r
+      //----------------/\r
+     //- Constructors -/\r
+    //----------------/\r
+\r
+    public Attachment() \r
+     {\r
+        super();\r
+    } //-- uk.ac.vamsas.objects.core.Attachment()\r
+\r
+\r
+      //-----------/\r
+     //- Methods -/\r
+    //-----------/\r
+\r
+    /**\r
+     * Method deleteCompressed\r
+     * \r
+     */\r
+    public void deleteCompressed()\r
+    {\r
+        this._has_compressed= false;\r
+    } //-- void deleteCompressed() \r
+\r
+    /**\r
+     * Note: hashCode() has not been overriden\r
+     * \r
+     * @param obj\r
+     * @return boolean\r
+     */\r
+    public boolean equals(java.lang.Object obj)\r
+    {\r
+        if ( this == obj )\r
+            return true;\r
+        \r
+        if (super.equals(obj)==false)\r
+            return false;\r
+        \r
+        if (obj instanceof Attachment) {\r
+        \r
+            Attachment temp = (Attachment)obj;\r
+            if (this._compressed != temp._compressed)\r
+                return false;\r
+            if (this._has_compressed != temp._has_compressed)\r
+                return false;\r
+            if (this._type != null) {\r
+                if (temp._type == null) return false;\r
+                else if (!(this._type.equals(temp._type))) \r
+                    return false;\r
+            }\r
+            else if (temp._type != null)\r
+                return false;\r
+            if (this._objectref != null) {\r
+                if (temp._objectref == null) return false;\r
+                else if (!(this._objectref.equals(temp._objectref))) \r
+                    return false;\r
+            }\r
+            else if (temp._objectref != null)\r
+                return false;\r
+            if (this._id != null) {\r
+                if (temp._id == null) return false;\r
+                else if (!(this._id.equals(temp._id))) \r
+                    return false;\r
+            }\r
+            else if (temp._id != null)\r
+                return false;\r
+            return true;\r
+        }\r
+        return false;\r
+    } //-- boolean equals(java.lang.Object) \r
+\r
+    /**\r
+     * Returns the value of field 'compressed'. The field\r
+     * 'compressed' has the following description: true implies\r
+     * data will be decompresses with Zip\r
+     *  before presenting to application \r
+     * \r
+     * @return boolean\r
+     * @return the value of field 'compressed'.\r
+     */\r
+    public boolean getCompressed()\r
+    {\r
+        return this._compressed;\r
+    } //-- boolean getCompressed() \r
+\r
+    /**\r
+     * Returns the value of field 'id'. The field 'id' has the\r
+     * following description: Primary Key for vamsas object\r
+     * referencing\r
+     *  \r
+     * \r
+     * @return String\r
+     * @return the value of field 'id'.\r
+     */\r
+    public java.lang.String getId()\r
+    {\r
+        return this._id;\r
+    } //-- java.lang.String getId() \r
+\r
+    /**\r
+     * Returns the value of field 'objectref'. The field\r
+     * 'objectref' has the following description: Object the\r
+     * arbitrary data is associated with\r
+     *  \r
+     * \r
+     * @return Object\r
+     * @return the value of field 'objectref'.\r
+     */\r
+    public java.lang.Object getObjectref()\r
+    {\r
+        return this._objectref;\r
+    } //-- java.lang.Object getObjectref() \r
+\r
+    /**\r
+     * Returns the value of field 'type'. The field 'type' has the\r
+     * following description: Type of arbitrary data - TODO: decide\r
+     * format - use\r
+     *  (extended) MIME types ? \r
+     * \r
+     * @return String\r
+     * @return the value of field 'type'.\r
+     */\r
+    public java.lang.String getType()\r
+    {\r
+        return this._type;\r
+    } //-- java.lang.String getType() \r
+\r
+    /**\r
+     * Method hasCompressed\r
+     * \r
+     * \r
+     * \r
+     * @return boolean\r
+     */\r
+    public boolean hasCompressed()\r
+    {\r
+        return this._has_compressed;\r
+    } //-- boolean hasCompressed() \r
+\r
+    /**\r
+     * Method isValid\r
+     * \r
+     * \r
+     * \r
+     * @return boolean\r
+     */\r
+    public boolean isValid()\r
+    {\r
+        try {\r
+            validate();\r
+        }\r
+        catch (org.exolab.castor.xml.ValidationException vex) {\r
+            return false;\r
+        }\r
+        return true;\r
+    } //-- boolean isValid() \r
+\r
+    /**\r
+     * Method marshal\r
+     * \r
+     * \r
+     * \r
+     * @param out\r
+     */\r
+    public void marshal(java.io.Writer out)\r
+        throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException\r
+    {\r
+        \r
+        Marshaller.marshal(this, out);\r
+    } //-- void marshal(java.io.Writer) \r
+\r
+    /**\r
+     * Method marshal\r
+     * \r
+     * \r
+     * \r
+     * @param handler\r
+     */\r
+    public void marshal(org.xml.sax.ContentHandler handler)\r
+        throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException\r
+    {\r
+        \r
+        Marshaller.marshal(this, handler);\r
+    } //-- void marshal(org.xml.sax.ContentHandler) \r
+\r
+    /**\r
+     * Sets the value of field 'compressed'. The field 'compressed'\r
+     * has the following description: true implies data will be\r
+     * decompresses with Zip\r
+     *  before presenting to application \r
+     * \r
+     * @param compressed the value of field 'compressed'.\r
+     */\r
+    public void setCompressed(boolean compressed)\r
+    {\r
+        this._compressed = compressed;\r
+        this._has_compressed = true;\r
+    } //-- void setCompressed(boolean) \r
+\r
+    /**\r
+     * Sets the value of field 'id'. The field 'id' has the\r
+     * following description: Primary Key for vamsas object\r
+     * referencing\r
+     *  \r
+     * \r
+     * @param id the value of field 'id'.\r
+     */\r
+    public void setId(java.lang.String id)\r
+    {\r
+        this._id = id;\r
+    } //-- void setId(java.lang.String) \r
+\r
+    /**\r
+     * Sets the value of field 'objectref'. The field 'objectref'\r
+     * has the following description: Object the arbitrary data is\r
+     * associated with\r
+     *  \r
+     * \r
+     * @param objectref the value of field 'objectref'.\r
+     */\r
+    public void setObjectref(java.lang.Object objectref)\r
+    {\r
+        this._objectref = objectref;\r
+    } //-- void setObjectref(java.lang.Object) \r
+\r
+    /**\r
+     * Sets the value of field 'type'. The field 'type' has the\r
+     * following description: Type of arbitrary data - TODO: decide\r
+     * format - use\r
+     *  (extended) MIME types ? \r
+     * \r
+     * @param type the value of field 'type'.\r
+     */\r
+    public void setType(java.lang.String type)\r
+    {\r
+        this._type = type;\r
+    } //-- void setType(java.lang.String) \r
+\r
+    /**\r
+     * Method unmarshal\r
+     * \r
+     * \r
+     * \r
+     * @param reader\r
+     * @return AppData\r
+     */\r
+    public static uk.ac.vamsas.objects.core.AppData unmarshal(java.io.Reader reader)\r
+        throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException\r
+    {\r
+        return (uk.ac.vamsas.objects.core.Attachment) Unmarshaller.unmarshal(uk.ac.vamsas.objects.core.Attachment.class, reader);\r
+    } //-- uk.ac.vamsas.objects.core.AppData unmarshal(java.io.Reader) \r
+\r
+    /**\r
+     * Method validate\r
+     * \r
+     */\r
+    public void validate()\r
+        throws org.exolab.castor.xml.ValidationException\r
+    {\r
+        org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();\r
+        validator.validate(this);\r
+    } //-- void validate() \r
+\r
+}\r