Omaha #3454 Fixed text archiver

Former-commit-id: fd16871b96 [formerly 61514bec505566ba434e3b9772e0aaf329b51cff]
Former-commit-id: 1fcb79c423
This commit is contained in:
Benjamin Phillippe 2014-10-29 16:09:35 -05:00
parent 0d2cbbfe4a
commit 13b8859ee1

View file

@ -38,6 +38,7 @@ import javax.xml.bind.annotation.XmlElement;
import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringBuilder;
import org.hibernate.annotations.Index; import org.hibernate.annotations.Index;
import org.hibernate.annotations.Type;
import com.raytheon.uf.common.dataplugin.persist.PersistableDataObject; import com.raytheon.uf.common.dataplugin.persist.PersistableDataObject;
import com.raytheon.uf.common.serialization.annotations.DynamicSerialize; import com.raytheon.uf.common.serialization.annotations.DynamicSerialize;
@ -59,6 +60,7 @@ import com.raytheon.uf.common.wmo.WMOHeader;
* 27 May 2012 #647 dgilling Implement getIdentifier/setIdentifier. * 27 May 2012 #647 dgilling Implement getIdentifier/setIdentifier.
* Nov 05, 2013 2499 rjpeter Fix generics. * Nov 05, 2013 2499 rjpeter Fix generics.
* May 14, 2014 2536 bclement moved WMO Header to common, removed ISerializableObject * May 14, 2014 2536 bclement moved WMO Header to common, removed ISerializableObject
* 10/29/2014 3454 bphillip Fixed text archiver
* </pre> * </pre>
* *
* @author jkorman * @author jkorman
@ -108,6 +110,7 @@ public abstract class StdTextProduct extends
/** persistent field */ /** persistent field */
@Column(nullable = false) @Column(nullable = false)
@Lob @Lob
@Type(type = "org.hibernate.type.TextType")
@DynamicSerializeElement @DynamicSerializeElement
@XmlElement @XmlElement
private String product; private String product;