File: vInterface.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 (14 lines) | stat: -rw-r--r-- 612 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package samples.bidbuy ;

import java.util.Vector;

public interface vInterface {
  public void register(String registryURL, Service s) throws Exception ;
  public void unregister(String registryURL, String name) throws Exception ;
  public Boolean ping(String serverURL) throws Exception ;
  public Vector lookupAsString(String registryURL) throws Exception ;
  public double requestForQuote(String serverURL) throws Exception ;
  public String simpleBuy(String serverURL, int quantity ) throws Exception ;
  public String buy(String serverURL, int quantity, int numItems, double price)
    throws Exception;
}