Skip to content

Commit 2efd206

Browse files
gnongsiesrathod
authored andcommitted
Adding new class.
1 parent 91fa814 commit 2efd206

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
package net.authorize.data.arb;
2+
3+
import javax.xml.bind.annotation.XmlRootElement;
4+
import java.io.Serializable;
5+
6+
@XmlRootElement
7+
public class Profile implements Serializable {
8+
private static final long serialVersionUID = 1L;
9+
10+
protected String customerProfileId;
11+
protected String customerPaymentProfileId;
12+
protected String customerAddressId;
13+
14+
private Profile() { }
15+
16+
/**
17+
* Create a new CustomerProfile object
18+
*
19+
* @return Profile
20+
*/
21+
public static Profile createProfile() {
22+
return new Profile();
23+
}
24+
25+
/**
26+
* Get the customer profile id.
27+
*
28+
* @return the id
29+
*/
30+
public String getCustomerProfileId() {
31+
return customerProfileId;
32+
}
33+
34+
/**
35+
* Set the customer profile id.
36+
*
37+
* @param id the id to set
38+
*/
39+
public void setCustomerProfileId(String id) {
40+
this.customerProfileId = id;
41+
}
42+
43+
/**
44+
* Get the customer payment profile id.
45+
*
46+
* @return the id
47+
*/
48+
public String getCustomerPaymentProfileId() {
49+
return customerPaymentProfileId;
50+
}
51+
52+
/**
53+
* Set the customer payment profile id.
54+
*
55+
* @param id the id to set
56+
*/
57+
public void setCustomerPaymentProfileId(String id) {
58+
this.customerPaymentProfileId = id;
59+
}
60+
61+
/**
62+
* Get the customer payment profile id.
63+
*
64+
* @return the id
65+
*/
66+
public String getCustomerAddressId() {
67+
return customerAddressId;
68+
}
69+
70+
/**
71+
* Set the customer payment profile id.
72+
*
73+
* @param id the id to set
74+
*/
75+
public void setCustomerAddressId(String id) {
76+
this.customerAddressId = id;
77+
}
78+
}

0 commit comments

Comments
 (0)