package compbio.data.msa.jaxws; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; @XmlRootElement(name = "customAlign", namespace = "http://msa.data.compbio/01/01/2010/") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "customAlign", namespace = "http://msa.data.compbio/01/01/2010/", propOrder = { "fastaSequences", "options" }) public class CustomAlign { @XmlElement(name = "fastaSequences", namespace = "") private List fastaSequences; @XmlElement(name = "options", namespace = "") private List options; /** * * @return * returns List */ public List getFastaSequences() { return this.fastaSequences; } /** * * @param fastaSequences * the value for the fastaSequences property */ public void setFastaSequences(List fastaSequences) { this.fastaSequences = fastaSequences; } /** * * @return * returns List