
com.ksc.kls.model.CancelRecordRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksc-sdk-java-kls Show documentation
Show all versions of ksc-sdk-java-kls Show documentation
The KSC SDK for Java - kls module holds the classes that is used
by the individual service clients to interact with KSC Web Services.
Users need to depend on live-java-sdk artifact for accessing individual client classes.
The newest version!
package com.ksc.kls.model;
import com.ksc.KscWebServiceRequest;
import com.ksc.Request;
import com.ksc.kls.model.transform.CancelRecordRequestMarshaller;
import com.ksc.model.DryRunSupportedRequest;
/**
* Created by yangfan on 2017/4/24.
*/
public class CancelRecordRequest extends KscWebServiceRequest implements DryRunSupportedRequest {
private String data;
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
@Override
public Request getDryRunRequest() {
Request request = new CancelRecordRequestMarshaller().marshall(this);
request.addParameter("DryRun", Boolean.toString(true));
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy