1 2 package com.ontotext.ordi.wsmo4rdf.remote.client.src; 3 4 import javax.jws.WebMethod; 5 import javax.jws.WebParam; 6 import javax.jws.WebResult; 7 import javax.jws.WebService; 8 import javax.xml.ws.RequestWrapper; 9 import javax.xml.ws.ResponseWrapper; 10 11 /** 12 * This class was generated by the CXF 2.0.2-incubator 13 * Wed Mar 19 14:55:14 EET 2008 14 * Generated source version: 2.0.2-incubator 15 * 16 */ 17 18 @WebService(targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "WsmoSourceService") 19 20 public interface WsmoSourceService { 21 22 @WebResult(targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "return") 23 @RequestWrapper(localName = "getConnection", targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", className = "com.ontotext.ordi.wsmo4rdf.remote.client.src.GetConnection") 24 @ResponseWrapper(localName = "getConnectionResponse", targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", className = "com.ontotext.ordi.wsmo4rdf.remote.client.src.GetConnectionResponse") 25 @WebMethod 26 public int getConnection( 27 @WebParam(targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "wsmoSourceId") 28 int wsmoSourceId 29 ) throws NonExistingEntryException_Exception, ServiceLimitExceededException_Exception; 30 31 @RequestWrapper(localName = "shutdown", targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", className = "com.ontotext.ordi.wsmo4rdf.remote.client.src.Shutdown") 32 @ResponseWrapper(localName = "shutdownResponse", targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", className = "com.ontotext.ordi.wsmo4rdf.remote.client.src.ShutdownResponse") 33 @WebMethod 34 public void shutdown( 35 @WebParam(targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "wsmoSourceId") 36 int wsmoSourceId 37 ) throws NonExistingEntryException_Exception; 38 39 @WebResult(targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "return") 40 @RequestWrapper(localName = "getConnectionAuth", targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", className = "com.ontotext.ordi.wsmo4rdf.remote.client.src.GetConnectionAuth") 41 @ResponseWrapper(localName = "getConnectionAuthResponse", targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", className = "com.ontotext.ordi.wsmo4rdf.remote.client.src.GetConnectionAuthResponse") 42 @WebMethod 43 public int getConnectionAuth( 44 @WebParam(targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "wsmoSourceId") 45 int wsmoSourceId, 46 @WebParam(targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "username") 47 java.lang.String username, 48 @WebParam(targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "password") 49 java.lang.String password 50 ) throws AuthenticationFailedException_Exception, NonExistingEntryException_Exception, ServiceLimitExceededException_Exception; 51 52 @RequestWrapper(localName = "clearWarnings", targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", className = "com.ontotext.ordi.wsmo4rdf.remote.client.src.ClearWarnings") 53 @ResponseWrapper(localName = "clearWarningsResponse", targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", className = "com.ontotext.ordi.wsmo4rdf.remote.client.src.ClearWarningsResponse") 54 @WebMethod 55 public void clearWarnings( 56 @WebParam(targetNamespace = "http://server.remote.wsmo4rdf.ordi.ontotext.com/", name = "wsmoSourceId") 57 int wsmoSourceId 58 ) throws NonExistingEntryException_Exception; 59 }