File: LimitExceededExceptionBean.java

package info (click to toggle)
libjaba-client-java 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 2,052 kB
  • sloc: java: 17,308; makefile: 12
file content (123 lines) | stat: -rw-r--r-- 2,952 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123

package compbio.data.msa.jaxws;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * This class was generated by the JAX-WS RI.
 * JAX-WS RI 2.2.3-b01-
 * Generated source version: 2.2.3
 * 
 */
@XmlRootElement(name = "LimitExceededException", namespace = "http://msa.data.compbio/01/12/2010/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LimitExceededException", namespace = "http://msa.data.compbio/01/12/2010/", propOrder = {
    "actualNumberofSequences",
    "message",
    "numberOfSequencesAllowed",
    "sequenceLenghtActual",
    "sequenceLenghtAllowed"
})
public class LimitExceededExceptionBean {

    private int actualNumberofSequences;
    private String message;
    private int numberOfSequencesAllowed;
    private int sequenceLenghtActual;
    private int sequenceLenghtAllowed;

    /**
     * 
     * @return
     *     returns int
     */
    public int getActualNumberofSequences() {
        return this.actualNumberofSequences;
    }

    /**
     * 
     * @param actualNumberofSequences
     *     the value for the actualNumberofSequences property
     */
    public void setActualNumberofSequences(int actualNumberofSequences) {
        this.actualNumberofSequences = actualNumberofSequences;
    }

    /**
     * 
     * @return
     *     returns String
     */
    public String getMessage() {
        return this.message;
    }

    /**
     * 
     * @param message
     *     the value for the message property
     */
    public void setMessage(String message) {
        this.message = message;
    }

    /**
     * 
     * @return
     *     returns int
     */
    public int getNumberOfSequencesAllowed() {
        return this.numberOfSequencesAllowed;
    }

    /**
     * 
     * @param numberOfSequencesAllowed
     *     the value for the numberOfSequencesAllowed property
     */
    public void setNumberOfSequencesAllowed(int numberOfSequencesAllowed) {
        this.numberOfSequencesAllowed = numberOfSequencesAllowed;
    }

    /**
     * 
     * @return
     *     returns int
     */
    public int getSequenceLenghtActual() {
        return this.sequenceLenghtActual;
    }

    /**
     * 
     * @param sequenceLenghtActual
     *     the value for the sequenceLenghtActual property
     */
    public void setSequenceLenghtActual(int sequenceLenghtActual) {
        this.sequenceLenghtActual = sequenceLenghtActual;
    }

    /**
     * 
     * @return
     *     returns int
     */
    public int getSequenceLenghtAllowed() {
        return this.sequenceLenghtAllowed;
    }

    /**
     * 
     * @param sequenceLenghtAllowed
     *     the value for the sequenceLenghtAllowed property
     */
    public void setSequenceLenghtAllowed(int sequenceLenghtAllowed) {
        this.sequenceLenghtAllowed = sequenceLenghtAllowed;
    }

}