File: AdaptiveInterfaceBindingImpl.java

package info (click to toggle)
axis 1.4-29
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 52,100 kB
  • sloc: java: 129,124; xml: 10,602; jsp: 983; sh: 84; cs: 36; makefile: 18
file content (46 lines) | stat: -rw-r--r-- 2,472 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
 * AdaptiveInterfaceBindingImpl.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis WSDL2Java emitter.
 */

package test.wsdl.adaptive;

import test.wsdl.adaptive.types.internal.Vector;

public class AdaptiveInterfaceBindingImpl implements test.wsdl.adaptive.AdaptiveInterface{
    public java.lang.String getServiceDescription() throws java.rmi.RemoteException {
        return null;
    }

    public test.wsdl.adaptive.types.ResourceInfo[] rankResources(test.wsdl.adaptive.types.ResourceInfo[] arrayOfResourceInfo_1, test.wsdl.adaptive.types.ApplicationInfo applicationInfo_2) throws java.rmi.RemoteException {
        test.wsdl.adaptive.types.ResourceInfo[] resources = new test.wsdl.adaptive.types.ResourceInfo[1];
        resources[0] = new test.wsdl.adaptive.types.ResourceInfo();
        resources[0].setId("Adaptive #1");
        test.wsdl.adaptive.types.internal.Vector v = new test.wsdl.adaptive.types.internal.Vector();
        v.setCollection(new String[]{"A","B","C"});
        resources[0].setProperties(v);
        return resources;
    }

    public int[] estimateTransferTime(boolean boolean_1, test.wsdl.adaptive.types.ResourceInfo resourceInfo_2, test.wsdl.adaptive.types.ResourceInfo[] arrayOfResourceInfo_3, long long_4, java.util.Calendar calendar_5) throws java.rmi.RemoteException {
        return null;
    }

    public void logDataTransfer(test.wsdl.adaptive.types.ResourceInfo resourceInfo_1, test.wsdl.adaptive.types.ResourceInfo resourceInfo_2, long long_3, java.util.Calendar calendar_4, java.util.Calendar calendar_5) throws java.rmi.RemoteException {
    }

    public java.lang.String estimateUsage(boolean boolean_1, test.wsdl.adaptive.types.ResourceInfo resourceInfo_2, java.lang.String string_3, int int_4, java.util.Calendar calendar_5, java.util.Calendar calendar_6) throws java.rmi.RemoteException {
        return null;
    }

    public java.lang.String[][] estimateMultipleUsage(boolean boolean_1, test.wsdl.adaptive.types.ResourceInfo[] arrayOfResourceInfo_2, java.lang.String[] arrayOfString_3, int int_4, java.util.Calendar calendar_5, java.util.Calendar calendar_6) throws java.rmi.RemoteException {
        return null;
    }

    public java.lang.String[][] estimateNetworkGraph(boolean boolean_1, test.wsdl.adaptive.types.ResourceInfo[] arrayOfResourceInfo_2, int int_3, java.util.Calendar calendar_4, java.util.Calendar calendar_5) throws java.rmi.RemoteException {
        return null;
    }

}