Files
iota.lib.java/src/main/java/jota/dto/response/ReplayBundleResponse.java
T
AZ deae4945b4 * refactoring started
* performance optimization through multithreading
* added duration for the proposed calls
2017-01-15 18:04:45 +01:00

26 lines
609 B
Java

package jota.dto.response;
/**
* Created by pinpong on 01.01.17.
*/
public class ReplayBundleResponse extends AbstractResponse {
private Boolean[] successfully;
public static ReplayBundleResponse create(Boolean[] successfully, long duration) {
ReplayBundleResponse res = new ReplayBundleResponse();
res.successfully = successfully;
res.setDuration(duration);
return res;
}
public Boolean[] getSuccessfully() {
return successfully;
}
public void setSuccessfully(Boolean[] successfully) {
this.successfully = successfully;
}
}