HandlingDescription.java
package com.tradecloud.domain.item;
import com.tradecloud.common.base.PersistenceBase;
import javax.persistence.Access;
import javax.persistence.AccessType;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
@Entity
@Table(name = "handlingdescription")
@Access(AccessType.FIELD)
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "HandlingDescription")
public class HandlingDescription extends PersistenceBase {
private static final long serialVersionUID = 1L;
private String description;
public HandlingDescription() {
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}