forked from AuthorizeNet/sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddress.java
More file actions
62 lines (50 loc) · 1.18 KB
/
Address.java
File metadata and controls
62 lines (50 loc) · 1.18 KB
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
package net.authorize.data.xml;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlRootElement
@XmlType(namespace="net.authorize.data.xml")
public class Address extends net.authorize.data.Address {
private static final long serialVersionUID = 1L;
protected String phoneNumber;
protected String faxNumber;
protected String addressId;
public static Address createAddress() {
return new Address();
}
/**
* @return the phoneNumber
*/
public String getPhoneNumber() {
return phoneNumber;
}
/**
* @param phoneNumber the phoneNumber to set
*/
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
/**
* @return the faxNumber
*/
public String getFaxNumber() {
return faxNumber;
}
/**
* @param faxNumber the faxNumber to set
*/
public void setFaxNumber(String faxNumber) {
this.faxNumber = faxNumber;
}
/**
* @return the addressId
*/
public String getAddressId() {
return addressId;
}
/**
* @param addressId the addressId to set
*/
public void setAddressId(String addressId) {
this.addressId = addressId;
}
}