2 package compbio.data.msa.jaxws;
\r
4 import javax.xml.bind.annotation.XmlAccessType;
\r
5 import javax.xml.bind.annotation.XmlAccessorType;
\r
6 import javax.xml.bind.annotation.XmlRootElement;
\r
7 import javax.xml.bind.annotation.XmlType;
\r
11 * This class was generated by the JAX-WS RI.
\r
12 * JAX-WS RI 2.2.1-hudson-28-
\r
13 * Generated source version: 2.2.1
\r
16 @XmlRootElement(name = "LimitExceededException", namespace = "http://msa.data.compbio/01/12/2010/")
\r
17 @XmlAccessorType(XmlAccessType.FIELD)
\r
18 @XmlType(name = "LimitExceededException", namespace = "http://msa.data.compbio/01/12/2010/", propOrder = {
\r
19 "actualNumberofSequences",
\r
21 "numberOfSequencesAllowed",
\r
22 "sequenceLenghtActual",
\r
23 "sequenceLenghtAllowed"
\r
25 public class LimitExceededExceptionBean {
\r
27 private int actualNumberofSequences;
\r
28 private String message;
\r
29 private int numberOfSequencesAllowed;
\r
30 private int sequenceLenghtActual;
\r
31 private int sequenceLenghtAllowed;
\r
38 public int getActualNumberofSequences() {
\r
39 return this.actualNumberofSequences;
\r
44 * @param actualNumberofSequences
\r
45 * the value for the actualNumberofSequences property
\r
47 public void setActualNumberofSequences(int actualNumberofSequences) {
\r
48 this.actualNumberofSequences = actualNumberofSequences;
\r
56 public String getMessage() {
\r
57 return this.message;
\r
63 * the value for the message property
\r
65 public void setMessage(String message) {
\r
66 this.message = message;
\r
74 public int getNumberOfSequencesAllowed() {
\r
75 return this.numberOfSequencesAllowed;
\r
80 * @param numberOfSequencesAllowed
\r
81 * the value for the numberOfSequencesAllowed property
\r
83 public void setNumberOfSequencesAllowed(int numberOfSequencesAllowed) {
\r
84 this.numberOfSequencesAllowed = numberOfSequencesAllowed;
\r
92 public int getSequenceLenghtActual() {
\r
93 return this.sequenceLenghtActual;
\r
98 * @param sequenceLenghtActual
\r
99 * the value for the sequenceLenghtActual property
\r
101 public void setSequenceLenghtActual(int sequenceLenghtActual) {
\r
102 this.sequenceLenghtActual = sequenceLenghtActual;
\r
110 public int getSequenceLenghtAllowed() {
\r
111 return this.sequenceLenghtAllowed;
\r
116 * @param sequenceLenghtAllowed
\r
117 * the value for the sequenceLenghtAllowed property
\r
119 public void setSequenceLenghtAllowed(int sequenceLenghtAllowed) {
\r
120 this.sequenceLenghtAllowed = sequenceLenghtAllowed;
\r