18 lines
363 B
Java
18 lines
363 B
Java
package com.ample.esb.bean.amp;
|
|
|
|
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
|
|
|
public class Application {
|
|
@XStreamAlias("APPLICANT2")
|
|
private Applicant2 applicant2;
|
|
|
|
public Applicant2 getApplicant2() {
|
|
return applicant2;
|
|
}
|
|
|
|
public void setApplicant2(Applicant2 applicant2) {
|
|
this.applicant2 = applicant2;
|
|
}
|
|
}
|