blob: 3f037ad242c316ec3ba767a7cc61e7674031cf36 (
plain) (
blame)
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
|
/*
*
*/
package org.uic.ticket.api.impl;
import org.uic.ticket.api.spec.ICustomerStatusDescription;
// TODO: Auto-generated Javadoc
/**
* The Class SimpleCustomerStatusDescription.
*/
public class SimpleCustomerStatusDescription implements ICustomerStatusDescription {
/** The status provider. */
protected String statusProvider;
/** The description. */
protected String description;
/** The status. */
protected int status;
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ICustomerStatusDescription#getStatusProvider()
*/
public String getStatusProvider() {
return statusProvider;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ICustomerStatusDescription#setStatusProvider(java.lang.String)
*/
public void setStatusProvider(String statusProvider) {
this.statusProvider = statusProvider;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ICustomerStatusDescription#getDescription()
*/
public String getDescription() {
return description;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ICustomerStatusDescription#setDescription(java.lang.String)
*/
public void setDescription(String description) {
this.description = description;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ICustomerStatusDescription#getStatus()
*/
public int getStatus() {
return status;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ICustomerStatusDescription#setStatus(org.uic.ticket.api.asn.om.CustomerStatusType)
*/
public void setStatus(int status) {
this.status = status;
}
}
|