id
stringlengths
36
36
text
stringlengths
1
1.25M
654b4a73-296b-4b0f-b970-cb4013f7f507
public Token setType(Enum<?> type) { this.type = type; return this; }
be6b690e-918e-4b37-b898-a2ee6067dc29
public Enum<?> getType() { return type; }
dc9a46ab-f460-4b29-8df0-4c2fbdf0167e
public BigDecimal toNumber() { return new BigDecimal(sb.toString()); }
e7764054-9d01-457e-8bc7-61e3378c2072
public boolean equals(Object obj) { return sb.toString().equals(String.valueOf(obj)); }
a0d70af9-5451-4882-9857-bd46ad112a18
public String calc(String formula) { String result = null; try { Parser parser = new Parser(); StringReader reader = new StringReader(formula); Node node = parser.parse(reader); BigDecimal val = node.value(); if (val == null) { return null; } result = val.stripTrailingZeros().toPlainString(); } catch (Exception ex) { return null; } return result; }
fdf64733-8c93-46c4-97b7-7fa08ee0579c
@Before public void before() throws IOException { conf = new Properties(); conf.load(this.getClass().getResourceAsStream("/test/resources/test.properties")); calculator = new Calculator(); }
aeed4882-fb2f-4559-a6e5-371547150da3
@Test public void testAdd() { String method = "testAdd"; String formula = this.__getValue(method); String ans = this.__getValue(method + safix); String result = calculator.calc(formula); assertEquals(ans, result); }
cd12fdbe-9f35-4b1a-94df-ffa0099790e4
@Test public void testSub() { String method = "testSub"; String formula = this.__getValue(method); String ans = this.__getValue(method + safix); String result = calculator.calc(formula); assertEquals(ans, result); }
61357afb-50a6-44c4-a12b-ad065e8dcf82
@Test public void testMul() { String method = "testMul"; String formula = this.__getValue(method); String ans = this.__getValue(method + safix); String result = calculator.calc(formula); assertEquals(ans, result); }
d60e8b5e-4e4f-49a9-8331-bbb67ba9f208
@Test public void testDiv() { String method = "testDiv"; String formula = this.__getValue(method); String ans = this.__getValue(method + safix); String result = calculator.calc(formula); assertEquals(ans, result); }
1ec4b063-11f7-482e-ad9b-1044bdfe79eb
@Test public void testMod() { String method = "testMod"; String formula = this.__getValue(method); String ans = this.__getValue(method + safix); String result = calculator.calc(formula); assertEquals(ans, result); }
24d4240d-06f0-4947-af5a-6516487f9bcd
@Test public void testPow() { String method = "testPow"; String formula = this.__getValue(method); String ans = this.__getValue(method + safix); String result = calculator.calc(formula); assertEquals(ans, result); }
f654593d-fbe0-466a-959c-6aa0e081570c
@Test public void testComplex() { String method = "testComplex"; String formula = this.__getValue(method); String ans = this.__getValue(method + safix); String result = calculator.calc(formula); assertEquals(ans, result); }
6fba209a-fe62-4eec-b534-5bdd8ae6a655
private String __getValue(String key) { return conf != null ? conf.getProperty(key) : null; }
bf96df50-4c08-4927-9be1-23a0dba34206
public ITraffLocator() { }
6a8907e1-6ba3-4a0b-b91f-ec6c2cd142e3
public ITraffLocator(org.apache.axis.EngineConfiguration config) { super(config); }
d46c6e37-da05-4664-bdb0-b956be66365d
public ITraffLocator(java.lang.String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException { super(wsdlLoc, sName); }
fe99707a-9a79-4322-a87e-ba8993b47dfa
public java.lang.String getiTraffSoapAddress() { return iTraffSoap_address; }
d2d2e060-c1c0-4f90-80c9-98232b6ec9f7
public java.lang.String getiTraffSoapWSDDServiceName() { return iTraffSoapWSDDServiceName; }
dc87b767-5159-490f-85d9-5a230245610a
public void setiTraffSoapWSDDServiceName(java.lang.String name) { iTraffSoapWSDDServiceName = name; }
84371f52-3fcb-412c-85f1-62ec9ce33163
public pl.itraff.clapi.ITraffSoap getiTraffSoap() throws javax.xml.rpc.ServiceException { java.net.URL endpoint; try { endpoint = new java.net.URL(iTraffSoap_address); } catch (java.net.MalformedURLException e) { throw new javax.xml.rpc.ServiceException(e); } return getiTraffSoap(endpoint); }
fd1b5f90-eab4-4bd5-8004-f788c70ee500
public pl.itraff.clapi.ITraffSoap getiTraffSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException { try { pl.itraff.clapi.ITraffSoapStub _stub = new pl.itraff.clapi.ITraffSoapStub(portAddress, this); _stub.setPortName(getiTraffSoapWSDDServiceName()); return _stub; } catch (org.apache.axis.AxisFault e) { return null; } }
d88d2c33-2810-40a3-84ff-7d8e204cf7a3
public void setiTraffSoapEndpointAddress(java.lang.String address) { iTraffSoap_address = address; }
900d9eed-cf84-49fb-ac5f-6c6d357664b4
public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException { try { if (pl.itraff.clapi.ITraffSoap.class.isAssignableFrom(serviceEndpointInterface)) { pl.itraff.clapi.ITraffSoapStub _stub = new pl.itraff.clapi.ITraffSoapStub(new java.net.URL(iTraffSoap_address), this); _stub.setPortName(getiTraffSoapWSDDServiceName()); return _stub; } } catch (java.lang.Throwable t) { throw new javax.xml.rpc.ServiceException(t); } throw new javax.xml.rpc.ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName())); }
10b56337-b800-4e44-b963-9e9e783652eb
public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException { if (portName == null) { return getPort(serviceEndpointInterface); } java.lang.String inputPortName = portName.getLocalPart(); if ("iTraffSoap".equals(inputPortName)) { return getiTraffSoap(); } else { java.rmi.Remote _stub = getPort(serviceEndpointInterface); ((org.apache.axis.client.Stub) _stub).setPortName(portName); return _stub; } }
fb5d9bd8-4b8a-4517-a6cc-e9f34b3c54e9
public javax.xml.namespace.QName getServiceName() { return new javax.xml.namespace.QName("http://clapi.itraff.pl", "iTraff"); }
8b2ef0a0-7d96-45a8-98d0-ef78b32027dc
public java.util.Iterator getPorts() { if (ports == null) { ports = new java.util.HashSet(); ports.add(new javax.xml.namespace.QName("http://clapi.itraff.pl", "iTraffSoap")); } return ports.iterator(); }
9afdeb3f-e693-4539-b35b-a491b2cb3602
public void setEndpointAddress(java.lang.String portName, java.lang.String address) throws javax.xml.rpc.ServiceException { if ("iTraffSoap".equals(portName)) { setiTraffSoapEndpointAddress(address); } else { // Unknown Port Name throw new javax.xml.rpc.ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName); } }
d4cd8146-7256-4f03-b909-92323bb4b443
public void setEndpointAddress(javax.xml.namespace.QName portName, java.lang.String address) throws javax.xml.rpc.ServiceException { setEndpointAddress(portName.getLocalPart(), address); }
fe466989-7a0a-4016-aeb7-4917334607b6
public ITraffSoapProxy() { _initITraffSoapProxy(); }
bbd41798-fda8-4c81-ad66-c34c61fcb32b
public ITraffSoapProxy(String endpoint) { _endpoint = endpoint; _initITraffSoapProxy(); }
c670a3a9-5920-4c72-982d-1d3db4ff1ec3
public ITraffSoapProxy(String clientId, String clapiKey, String apiKey) throws RemoteException { _initITraffSoapProxy(); this.clientId = clientId; this.clapiKey = clapiKey; this.apiKey = apiKey; this.auth(clientId, clapiKey, null); }
a9a74818-ddf4-487d-bafb-f439819cb1b0
private void _initITraffSoapProxy() { try { iTraffSoap = (new pl.itraff.clapi.ITraffLocator()).getiTraffSoap(); if (iTraffSoap != null) { if (_endpoint != null) ((javax.xml.rpc.Stub) iTraffSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); else _endpoint = (String) ((javax.xml.rpc.Stub) iTraffSoap) ._getProperty("javax.xml.rpc.service.endpoint.address"); ((org.apache.axis.client.Stub) iTraffSoap).setMaintainSession(true); } } catch (javax.xml.rpc.ServiceException serviceException) { } }
1fc6f925-c2d6-4694-aa8a-64fd7acf21a1
public String getEndpoint() { return _endpoint; }
d84f4b1a-7ff7-4653-9462-52762544a206
public void setEndpoint(String endpoint) { _endpoint = endpoint; if (iTraffSoap != null) ((javax.xml.rpc.Stub) iTraffSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); }
30e8fdb8-cba0-484f-841f-976ce7d3eb62
public pl.itraff.clapi.ITraffSoap getITraffSoap() { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap; }
5abd775a-ddea-40c8-82a4-895e569da1a3
public java.util.HashMap auth(java.lang.String client_id, java.lang.String key_clapi, java.lang.String ip) throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.auth(client_id, key_clapi, ip); }
b4ced5ea-f876-4d81-b533-5c164068ac5c
public java.util.HashMap userGet() throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.userGet(); }
465064fe-7251-49ef-ae7d-303f278c9009
public java.util.HashMap userUpdate(java.util.HashMap info_billing, java.util.HashMap info_invoice) throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.userUpdate(info_billing, info_invoice); }
4c89517e-098a-40a6-8171-1f7475c3aaad
public java.util.HashMap userDelete() throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.userDelete(); }
dd22458e-2b6f-4a91-b81b-2bc09d7da795
public java.util.HashMap userLimits() throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.userLimits(); }
69c7b726-26ed-443a-a0cb-d2002fc608fb
public java.util.HashMap paymentList() throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.paymentList(); }
4c390fed-3858-4e89-858f-835203f164e5
public java.util.HashMap imageCount() throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.imageCount(); }
2b82c7e7-99b4-45fb-a1bc-38c1ed1e9c5a
public java.util.HashMap imageMeta() throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.imageMeta(); }
3ccf4c7e-3cd9-4f73-b748-716f2f8c2d10
public java.util.HashMap imageList(java.util.HashMap params) throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.imageList(params); }
13c1a300-34bf-42e9-bebc-4b0e31247138
public java.util.HashMap imageInsert(java.lang.String id, java.lang.String name, java.lang.String data) throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.imageInsert(id, name, data); }
a53ad2da-f52c-4c5d-82cd-464be4701ae2
public java.util.HashMap imageUpdate(java.lang.String ID, java.util.HashMap data) throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.imageUpdate(ID, data); }
65bc7b26-faa2-405b-8899-9f69f451a508
public java.util.HashMap imageDelete(java.lang.String ID) throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.imageDelete(ID); }
65e5dad7-2fbe-492e-b4bd-f36b21fc9967
public java.util.HashMap imageGet(java.lang.String id) throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.imageGet(id); }
4fe12d77-d200-458a-b022-b133fae9dd6c
public java.util.HashMap indexBuild() throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.indexBuild(); }
9e577854-e552-4b2a-b9ee-38e6982cb909
public java.util.HashMap callback(org.apache.axis.types.URI callbackURL) throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.callback(callbackURL); }
4e414fde-492b-48f2-ba7c-3066eca2048e
public java.util.HashMap indexStatus() throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.indexStatus(); }
5fb5d135-a968-43e5-80f5-a04d78373490
public java.util.HashMap keyGet(boolean regenerate) throws java.rmi.RemoteException { if (iTraffSoap == null) _initITraffSoapProxy(); return iTraffSoap.keyGet(regenerate); }
d7c55f21-575d-4d77-a53e-545bbdfd4b22
public java.util.HashMap auth(java.lang.String client_id, java.lang.String key_clapi, java.lang.String ip) throws java.rmi.RemoteException;
0d52cecd-118d-4a78-a542-eacea828df1c
public java.util.HashMap userGet() throws java.rmi.RemoteException;
f8054aa6-79fa-4c9b-ad40-3215a8f32d77
public java.util.HashMap userUpdate(java.util.HashMap info_billing, java.util.HashMap info_invoice) throws java.rmi.RemoteException;
c18e5446-4c3f-4de2-8080-9e94b6ad8965
public java.util.HashMap userDelete() throws java.rmi.RemoteException;
8fd509d7-cf8e-4754-b044-1523c1761fc2
public java.util.HashMap userLimits() throws java.rmi.RemoteException;
839e09ef-eb51-45ed-b50b-01de7c4ac6f2
public java.util.HashMap paymentList() throws java.rmi.RemoteException;
db926611-1670-4914-9cb0-dfaa0b1eb5d7
public java.util.HashMap imageCount() throws java.rmi.RemoteException;
3f3be9ce-6b7a-46b7-9683-d6d7c74fa01a
public java.util.HashMap imageMeta() throws java.rmi.RemoteException;
1d2fde15-0bbf-4b3d-a755-76865e8b1b84
public java.util.HashMap imageList(java.util.HashMap params) throws java.rmi.RemoteException;
0b70ce2a-3c49-4f0b-a7e1-d40346ad5f8f
public java.util.HashMap imageInsert(java.lang.String id, java.lang.String name, java.lang.String data) throws java.rmi.RemoteException;
5d85f657-5222-403a-9d5c-fc2819a23ad5
public java.util.HashMap imageUpdate(java.lang.String ID, java.util.HashMap data) throws java.rmi.RemoteException;
3967d79d-f76c-4337-a128-9fb0b94afce5
public java.util.HashMap imageDelete(java.lang.String ID) throws java.rmi.RemoteException;
75827111-5e83-43be-8707-d389e408a392
public java.util.HashMap imageGet(java.lang.String id) throws java.rmi.RemoteException;
bee66632-31e5-42dd-a02d-65dccee0bf13
public java.util.HashMap indexBuild() throws java.rmi.RemoteException;
80b9de21-00a7-49a8-add3-3d3c9e1cbb76
public java.util.HashMap callback(org.apache.axis.types.URI callbackURL) throws java.rmi.RemoteException;
4d5228c7-4b4b-40a5-9732-6d54268b9bcf
public java.util.HashMap indexStatus() throws java.rmi.RemoteException;
d5cd91c6-c524-4310-97e6-8fb5a33912fb
public java.util.HashMap keyGet(boolean regenerate) throws java.rmi.RemoteException;
396714ab-79d5-4f37-9643-5f8685cec1fb
private static void _initOperationDesc1(){ org.apache.axis.description.OperationDesc oper; org.apache.axis.description.ParameterDesc param; oper = new org.apache.axis.description.OperationDesc(); oper.setName("auth"); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "client_id"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false); oper.addParameter(param); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "key_clapi"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false); oper.addParameter(param); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "ip"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false); oper.addParameter(param); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[0] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("userGet"); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[1] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("userUpdate"); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "info_billing"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map"), java.util.HashMap.class, false, false); oper.addParameter(param); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "info_invoice"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map"), java.util.HashMap.class, false, false); oper.addParameter(param); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[2] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("userDelete"); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[3] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("userLimits"); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[5] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("imageCount"); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[6] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("imageMeta"); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[7] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("imageList"); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "params"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map"), java.util.HashMap.class, false, false); oper.addParameter(param); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[8] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("imageInsert"); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "id"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false); oper.addParameter(param); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "name"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false); oper.addParameter(param); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "data"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false); oper.addParameter(param); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[9] = oper; }
3385e4e8-c01e-4c86-be6a-fa5e685bc5d5
private static void _initOperationDesc2(){ org.apache.axis.description.OperationDesc oper; org.apache.axis.description.ParameterDesc param; oper = new org.apache.axis.description.OperationDesc(); oper.setName("imageUpdate"); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "ID"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false); oper.addParameter(param); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "data"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map"), java.util.HashMap.class, false, false); oper.addParameter(param); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[10] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("imageDelete"); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "ID"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false); oper.addParameter(param); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[11] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("imageGet"); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "id"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, false, false); oper.addParameter(param); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[12] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("indexBuild"); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[13] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("callback"); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "callbackURL"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "anyURI"), org.apache.axis.types.URI.class, false, false); oper.addParameter(param); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[14] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("indexStatus"); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[15] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("keyGet"); param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("", "regenerate"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean"), boolean.class, false, false); oper.addParameter(param); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[16] = oper; oper = new org.apache.axis.description.OperationDesc(); oper.setName("paymentList"); oper.setReturnType(new javax.xml.namespace.QName("http://xml.apache.org/xml-soap", "Map")); oper.setReturnClass(java.util.HashMap.class); oper.setReturnQName(new javax.xml.namespace.QName("", "return")); oper.setStyle(org.apache.axis.constants.Style.RPC); oper.setUse(org.apache.axis.constants.Use.ENCODED); _operations[17] = oper; }
716138f8-56a9-4009-9729-503babfa8d7d
public ITraffSoapStub() throws org.apache.axis.AxisFault { this(null); }
476fc6bb-fe65-4732-9e66-b156db78b66e
public ITraffSoapStub(java.net.URL endpointURL, javax.xml.rpc.Service service) throws org.apache.axis.AxisFault { this(service); super.cachedEndpoint = endpointURL; }
e05cb2d3-9c0a-448b-9e82-b3409489678d
public ITraffSoapStub(javax.xml.rpc.Service service) throws org.apache.axis.AxisFault { if (service == null) { super.service = new org.apache.axis.client.Service(); } else { super.service = service; } ((org.apache.axis.client.Service)super.service).setTypeMappingVersion("1.2"); }
93f287a0-48f1-418d-aaeb-41fb19016e7a
protected org.apache.axis.client.Call createCall() throws java.rmi.RemoteException { try { org.apache.axis.client.Call _call = super._createCall(); if (super.maintainSessionSet) { _call.setMaintainSession(super.maintainSession); } if (super.cachedUsername != null) { _call.setUsername(super.cachedUsername); } if (super.cachedPassword != null) { _call.setPassword(super.cachedPassword); } if (super.cachedEndpoint != null) { _call.setTargetEndpointAddress(super.cachedEndpoint); } if (super.cachedTimeout != null) { _call.setTimeout(super.cachedTimeout); } if (super.cachedPortName != null) { _call.setPortName(super.cachedPortName); } java.util.Enumeration keys = super.cachedProperties.keys(); while (keys.hasMoreElements()) { java.lang.String key = (java.lang.String) keys.nextElement(); _call.setProperty(key, super.cachedProperties.get(key)); } return _call; } catch (java.lang.Throwable _t) { throw new org.apache.axis.AxisFault("Failure trying to get the Call object", _t); } }
aaf172bb-8235-442a-a3f1-4ba185b6a778
public java.util.HashMap auth(java.lang.String client_id, java.lang.String key_clapi, java.lang.String ip) throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[0]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#auth"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "auth")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {client_id, key_clapi, ip}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
4f30eec6-310d-4323-b27f-2c36cbb36130
public java.util.HashMap userGet() throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[1]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#userGet"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "userGet")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
f3da721f-3bf2-4509-b692-68e352ffdcad
public java.util.HashMap userUpdate(java.util.HashMap info_billing, java.util.HashMap info_invoice) throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[2]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#userUpdate"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "userUpdate")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {info_billing, info_invoice}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
d560f97c-d991-466e-af5b-747c9f9785bc
public java.util.HashMap userDelete() throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[3]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#userDelete"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "userDelete")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
5c7a619d-a8b2-4a41-b68b-7e6f9a04527e
public java.util.HashMap userLimits() throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[5]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#userLimits"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "userLimits")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
bb6f26d0-6c75-4f64-966c-0d849090bb37
public java.util.HashMap imageCount() throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[6]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#imageCount"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "imageCount")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
6db11106-1c92-4490-8c38-539c4f48ee9a
public java.util.HashMap imageMeta() throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[7]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#imageMeta"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "imageMeta")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
bcc2e2a2-f6cd-46f7-b26d-735421fb7370
public java.util.HashMap imageList(java.util.HashMap params) throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[8]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#imageList"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "imageList")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {params}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
a504c674-46a8-43b9-acd5-b4b5c9db0041
public java.util.HashMap imageInsert(java.lang.String id, java.lang.String name, java.lang.String data) throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[9]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#imageInsert"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "imageInsert")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {id, name, data}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
76ef0230-2cbe-4056-8f81-2d809fbc972d
public java.util.HashMap imageUpdate(java.lang.String ID, java.util.HashMap data) throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[10]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#imageUpdate"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "imageUpdate")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {ID, data}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
1c36a835-dffb-442f-850e-5e5553fc3dec
public java.util.HashMap imageDelete(java.lang.String ID) throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[11]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#imageDelete"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "imageDelete")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {ID}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
d4a0a046-99e8-44f8-9fe8-78e17572ce7e
public java.util.HashMap imageGet(java.lang.String id) throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[12]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#imageGet"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "imageGet")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {id}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
d8491cd2-3ef5-494b-8bdc-a28b5ba95141
public java.util.HashMap indexBuild() throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[13]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#indexBuild"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "indexBuild")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
032bd055-e5cf-4d28-854e-917e3ebdcf89
public java.util.HashMap callback(org.apache.axis.types.URI callbackURL) throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[14]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#callback"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "callback")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {callbackURL}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
69a604e5-a0f5-46db-ae15-34ee8e990592
public java.util.HashMap indexStatus() throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[15]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#indexStatus"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "indexStatus")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
943c3dad-037f-4d39-8bbc-eb26298e78f8
public java.util.HashMap keyGet(boolean regenerate) throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[16]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#keyGet"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "keyGet")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {new java.lang.Boolean(regenerate)}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
b550a3c1-50a9-450e-b917-441971ff1a02
public java.util.HashMap paymentList() throws java.rmi.RemoteException { if (super.cachedEndpoint == null) { throw new org.apache.axis.NoEndPointException(); } org.apache.axis.client.Call _call = createCall(); _call.setOperation(_operations[17]); _call.setUseSOAPAction(true); _call.setSOAPActionURI("http://clapi.itraff.pl#payentList"); _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); _call.setOperationName(new javax.xml.namespace.QName("http://clapi.itraff.pl", "paymentList")); setRequestHeaders(_call); setAttachments(_call); try { java.lang.Object _resp = _call.invoke(new java.lang.Object[] {}); if (_resp instanceof java.rmi.RemoteException) { throw (java.rmi.RemoteException)_resp; } else { extractAttachments(_call); try { return (java.util.HashMap) _resp; } catch (java.lang.Exception _exception) { return (java.util.HashMap) org.apache.axis.utils.JavaUtils.convert(_resp, java.util.HashMap.class); } } } catch (org.apache.axis.AxisFault axisFaultException) { throw axisFaultException; } }
27ccf20d-d517-4187-b090-318e7ae659d5
public java.lang.String getiTraffSoapAddress();
1daa1817-d7b2-4155-a246-c613dbc7f30f
public pl.itraff.clapi.ITraffSoap getiTraffSoap() throws javax.xml.rpc.ServiceException;
721408ff-8c60-4c5f-969c-1943ffc6f865
public pl.itraff.clapi.ITraffSoap getiTraffSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException;
ef062764-ae3a-4dd2-953e-d7bca38e13f1
public byte[] getData() { return data; }
f0055a18-028f-40dc-9c6d-f978dc3d1f13
public int getWidth() { return width; }
644d686a-8ca2-496d-b12e-33b7cfbeec72
public int getHeight() { return height; }
9cd6e102-29ca-4d13-a033-e20dc3641a29
public Image(byte[] data, int width, int height) { super(); this.data = data; this.width = width; this.height = height; }