arp.process.result.PairProcessResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ARP Show documentation
Show all versions of ARP Show documentation
a java development framework with aggregation, repository and process
The newest version!
package arp.process.result;
public class PairProcessResult {
private A a;
private B b;
public static PairProcessResult instance(A a, B b) {
PairProcessResult rslt = new PairProcessResult<>();
rslt.setA(a);
rslt.setB(b);
return rslt;
}
public A getA() {
return a;
}
public void setA(A a) {
this.a = a;
}
public B getB() {
return b;
}
public void setB(B b) {
this.b = b;
}
}