|
|
@@ -13,20 +13,20 @@ import com.crystaldecisions.sdk.occa.report.lib.ReportSDKException;
|
|
|
import com.crystaldecisions.xml.serialization.IXMLSerializable;
|
|
|
import java.util.Locale;
|
|
|
|
|
|
-class AgentImplemention1 implements Agent {
|
|
|
+class a implements Agent {
|
|
|
JRCCommunicationAdapter jrcCommunicationAdapter;
|
|
|
|
|
|
- AgentImplemention1(String var1, Locale var2) throws ReportSDKException {
|
|
|
+ a(String var1, Locale var2) throws ReportSDKException {
|
|
|
this.jrcCommunicationAdapter = new JRCCommunicationAdapter(var1, var2);
|
|
|
}
|
|
|
|
|
|
- AgentImplemention1(Locale var1) throws ReportSDKException {
|
|
|
+ a(Locale var1) throws ReportSDKException {
|
|
|
this.jrcCommunicationAdapter = new JRCCommunicationAdapter();
|
|
|
this.jrcCommunicationAdapter.setLocale(var1);
|
|
|
}
|
|
|
|
|
|
- Object a(int var1, Object var2) throws ReportSDKException {
|
|
|
- return this.jrcCommunicationAdapter.request(var1, 0, "", (ISecurityContext)null, (IXMLSerializable)var2);
|
|
|
+ Object a(int requestId, Object input) throws ReportSDKException {
|
|
|
+ return this.jrcCommunicationAdapter.request(requestId, 0, "", (ISecurityContext)null, (IXMLSerializable)input);
|
|
|
}
|
|
|
|
|
|
public void execute(Command command) throws ReportSDKException {
|