Java 类javax.xml.ws.RequestWrapper 实例源码

项目:rapidminer    文件:UpdateService.java   
@WebMethod
@WebResult(
        targetNamespace = ""
)
@RequestWrapper(
        localName = "getLicenseText",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetLicenseText"
)
@ResponseWrapper(
        localName = "getLicenseTextResponse",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetLicenseTextResponse"
)
String getLicenseText(@WebParam(
        name = "licenseName",
        targetNamespace = ""
) String var1);
项目:spr    文件:StpService.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "obtenerProductosFisicos", targetNamespace = "localhost", className = "py.gov.stp.mh.consultas.ObtenerProductosFisicos")
@WebMethod
@ResponseWrapper(localName = "obtenerProductosFisicosResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.consultas.ObtenerProductosFisicosResponse")
public java.util.List<py.gov.stp.mh.consultas.ProductoFisico> obtenerProductosFisicos(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Integer anio,
    @WebParam(name = "nivel", targetNamespace = "")
    java.lang.Integer nivel,
    @WebParam(name = "entidad", targetNamespace = "")
    java.lang.Integer entidad,
    @WebParam(name = "tipo", targetNamespace = "")
    java.lang.Integer tipo,
    @WebParam(name = "programa", targetNamespace = "")
    java.lang.Integer programa,
    @WebParam(name = "subprograma", targetNamespace = "")
    java.lang.Integer subprograma,
    @WebParam(name = "proyecto", targetNamespace = "")
    java.lang.Integer proyecto
);
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "todasLasEntidadesPorAnio", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.TodasLasEntidadesPorAnio")
@WebMethod
@ResponseWrapper(localName = "todasLasEntidadesPorAnioResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.TodasLasEntidadesPorAnioResponse")
public java.util.List<py.gov.stp.mh.clasificadores.Entidad> todasLasEntidadesPorAnio(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio
);
项目:rapidminer    文件:ProcessService.java   
/**
 * 
 * @param since
 * @return
 *     returns java.util.List<java.lang.Integer>
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getRunningProcesses", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetRunningProcesses")
@ResponseWrapper(localName = "getRunningProcessesResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetRunningProcessesResponse")
public List<Integer> getRunningProcesses(
    @WebParam(name = "since", targetNamespace = "")
    XMLGregorianCalendar since);
项目:rapidminer    文件:UpdateService.java   
@WebMethod
@WebResult(
        targetNamespace = ""
)
@RequestWrapper(
        localName = "getDownloadURL",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetDownloadURL"
)
@ResponseWrapper(
        localName = "getDownloadURLResponse",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetDownloadURLResponse"
)
String getDownloadURL(@WebParam(
        name = "packageId",
        targetNamespace = ""
) String var1, @WebParam(
        name = "version",
        targetNamespace = ""
) String var2, @WebParam(
        name = "targetPlatform",
        targetNamespace = ""
) String var3) throws UpdateServiceException_Exception;
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "proyectos", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.Proyectos")
@WebMethod
@ResponseWrapper(localName = "proyectosResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.ProyectosResponse")
public java.util.List<py.gov.stp.mh.clasificadores.Proyecto> proyectos(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio,
    @WebParam(name = "nivel", targetNamespace = "")
    java.lang.Short nivel,
    @WebParam(name = "entidad", targetNamespace = "")
    java.lang.Short entidad,
    @WebParam(name = "tipo", targetNamespace = "")
    java.lang.Short tipo,
    @WebParam(name = "programa", targetNamespace = "")
    java.lang.Short programa,
    @WebParam(name = "subprograma", targetNamespace = "")
    java.lang.Short subprograma
);
项目:rapidminer    文件:UpdateService.java   
@WebMethod
@WebResult(
        targetNamespace = ""
)
@RequestWrapper(
        localName = "getPackageInfo",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetPackageInfo"
)
@ResponseWrapper(
        localName = "getPackageInfoResponse",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetPackageInfoResponse"
)
PackageDescriptor getPackageInfo(@WebParam(
        name = "packageId",
        targetNamespace = ""
) String var1, @WebParam(
        name = "version",
        targetNamespace = ""
) String var2, @WebParam(
        name = "targetPlatform",
        targetNamespace = ""
) String var3) throws UpdateServiceException_Exception;
项目:rapidminer    文件:UpdateService.java   
@WebMethod
@WebResult(
        targetNamespace = ""
)
@RequestWrapper(
        localName = "searchFor",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.SearchFor"
)
@ResponseWrapper(
        localName = "searchForResponse",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.SearchForResponse"
)
List<String> searchFor(@WebParam(
        name = "searchString",
        targetNamespace = ""
) String var1);
项目:spr    文件:StpService.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "obtenerDetalleFinancieroPorProducto", targetNamespace = "localhost", className = "py.gov.stp.mh.consultas.ObtenerDetalleFinancieroPorProducto")
@WebMethod
@ResponseWrapper(localName = "obtenerDetalleFinancieroPorProductoResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.consultas.ObtenerDetalleFinancieroPorProductoResponse")
public java.util.List<py.gov.stp.mh.consultas.ProductoFinanciero> obtenerDetalleFinancieroPorProducto(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Integer anio,
    @WebParam(name = "nivel", targetNamespace = "")
    java.lang.Integer nivel,
    @WebParam(name = "entidad", targetNamespace = "")
    java.lang.Integer entidad,
    @WebParam(name = "tipo", targetNamespace = "")
    java.lang.Integer tipo,
    @WebParam(name = "programa", targetNamespace = "")
    java.lang.Integer programa,
    @WebParam(name = "subprograma", targetNamespace = "")
    java.lang.Integer subprograma,
    @WebParam(name = "proyecto", targetNamespace = "")
    java.lang.Integer proyecto,
    @WebParam(name = "producto", targetNamespace = "")
    java.lang.Integer producto
);
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "subprogramas", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.Subprogramas")
@WebMethod
@ResponseWrapper(localName = "subprogramasResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.SubprogramasResponse")
public java.util.List<py.gov.stp.mh.clasificadores.Subprograma> subprogramas(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio,
    @WebParam(name = "nivel", targetNamespace = "")
    java.lang.Short nivel,
    @WebParam(name = "entidad", targetNamespace = "")
    java.lang.Short entidad,
    @WebParam(name = "tipo", targetNamespace = "")
    java.lang.Short tipo,
    @WebParam(name = "programa", targetNamespace = "")
    java.lang.Short programa
);
项目:spr    文件:InsertsPresupuesto.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "insertarProyectoCodigoSnip", targetNamespace = "localhost", className = "py.gov.stp.mh.inserts_presupuesto.InsertarProyectoCodigoSnip")
@WebMethod
@ResponseWrapper(localName = "insertarProyectoCodigoSnipResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.inserts_presupuesto.InsertarProyectoCodigoSnipResponse")
public java.lang.Short insertarProyectoCodigoSnip(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio,
    @WebParam(name = "nivel", targetNamespace = "")
    java.lang.Short nivel,
    @WebParam(name = "entidad", targetNamespace = "")
    java.lang.Short entidad,
    @WebParam(name = "tipoPrograma", targetNamespace = "")
    java.lang.Short tipoPrograma,
    @WebParam(name = "codigoPrograma", targetNamespace = "")
    java.lang.Short codigoPrograma,
    @WebParam(name = "codigoSubprograma", targetNamespace = "")
    java.lang.Short codigoSubprograma,
    @WebParam(name = "codigoProyecto", targetNamespace = "")
    java.lang.Short codigoProyecto,
    @WebParam(name = "codigoSnip", targetNamespace = "")
    java.lang.Short codigoSnip
) throws WsException_Exception;
项目:rapidminer    文件:ProcessService13.java   
/**
 * 
 * @param processLocation
 * @param executionTime
 * @param processContext
 * @param queueName
 * @return
 *     returns com.rapid_i.repository.wsimport.ExecutionResponse
 */
@WebMethod(operationName = "executeProcessSimple_1_3")
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "executeProcessSimple_1_3", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.ExecuteProcessSimple13")
@ResponseWrapper(localName = "executeProcessSimple_1_3Response", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.ExecuteProcessSimple13Response")
public ExecutionResponse executeProcessSimple13(
    @WebParam(name = "processLocation", targetNamespace = "")
    String processLocation,
    @WebParam(name = "executionTime", targetNamespace = "")
    XMLGregorianCalendar executionTime,
    @WebParam(name = "processContext", targetNamespace = "")
    ProcessContextWrapper processContext,
    @WebParam(name = "queueName", targetNamespace = "")
    String queueName);
项目:rapidminer    文件:ProcessService13.java   
/**
 * 
 * @param queueName
 * @return
 *     returns java.util.List<com.rapid_i.repository.wsimport.QueueProperty>
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getQueueInfo", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetQueueInfo")
@ResponseWrapper(localName = "getQueueInfoResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetQueueInfoResponse")
public List<QueueProperty> getQueueInfo(
    @WebParam(name = "queueName", targetNamespace = "")
    String queueName);
项目:spr    文件:UpdatesPresupuesto.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "actualizarPrograma", targetNamespace = "localhost", className = "py.gov.stp.mh.update_presupuesto.ActualizarPrograma")
@WebMethod
@ResponseWrapper(localName = "actualizarProgramaResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.update_presupuesto.ActualizarProgramaResponse")
public java.lang.Short actualizarPrograma(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio,
    @WebParam(name = "nivel", targetNamespace = "")
    java.lang.Short nivel,
    @WebParam(name = "entidad", targetNamespace = "")
    java.lang.Short entidad,
    @WebParam(name = "tipoPrograma", targetNamespace = "")
    java.lang.Short tipoPrograma,
    @WebParam(name = "codigoPrograma", targetNamespace = "")
    java.lang.Short codigoPrograma,
    @WebParam(name = "changeNombrePrograma", targetNamespace = "")
    java.lang.String changeNombrePrograma,
    @WebParam(name = "changeAbrevPrograma", targetNamespace = "")
    java.lang.String changeAbrevPrograma,
    @WebParam(name = "changeDescripcion", targetNamespace = "")
    java.lang.String changeDescripcion,
    @WebParam(name = "changeBaseLegal", targetNamespace = "")
    java.lang.String changeBaseLegal,
    @WebParam(name = "changeResultado", targetNamespace = "")
    java.lang.String changeResultado,
    @WebParam(name = "changeCodigoDepto", targetNamespace = "")
    java.lang.Short changeCodigoDepto,
    @WebParam(name = "changeObjetivo", targetNamespace = "")
    java.lang.String changeObjetivo,
    @WebParam(name = "changeDiagnostico", targetNamespace = "")
    java.lang.String changeDiagnostico
) throws WsException_Exception;
项目:rapidminer    文件:ProcessService13.java   
/**
 * 
 * @param scheduledProcessId
 * @return
 *     returns com.rapid_i.repository.wsimport.Response
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "stopProcess", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.StopProcess")
@ResponseWrapper(localName = "stopProcessResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.StopProcessResponse")
public Response stopProcess(
    @WebParam(name = "scheduledProcessId", targetNamespace = "")
    int scheduledProcessId);
项目:rapidminer    文件:ProcessService13.java   
/**
 * 
 * @param queueName
 * @return
 *     returns com.rapid_i.repository.wsimport.QueueState
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getQueueState", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetQueueState")
@ResponseWrapper(localName = "getQueueStateResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetQueueStateResponse")
public QueueState getQueueState(
    @WebParam(name = "queueName", targetNamespace = "")
    String queueName);
项目:Java_Good    文件:GeoIPServiceSoap.java   
/**
 * GeoIPService - GetGeoIP enables you to easily look up countries by IP addresses
 */
@WebMethod(operationName = "GetGeoIP", action = "http://www.webservicex.net/GetGeoIP")
@RequestWrapper(localName = "GetGeoIP", targetNamespace = "http://www.webservicex.net/", className = "net.webservicex.GetGeoIP")
@ResponseWrapper(localName = "GetGeoIPResponse", targetNamespace = "http://www.webservicex.net/", className = "net.webservicex.GetGeoIPResponse")
@WebResult(name = "GetGeoIPResult", targetNamespace = "http://www.webservicex.net/")
public net.webservicex.GeoIP getGeoIP(
    @WebParam(name = "IPAddress", targetNamespace = "http://www.webservicex.net/")
    java.lang.String ipAddress
);
项目:stuffEngine    文件:EmployeeWebService.java   
/**
 * 
 * @param employeeId
 * @param salary
 */
@WebMethod
@RequestWrapper(localName = "changeSalary", targetNamespace = "http://ws.technoserv.ru/", className = "ru.technoserv.ws.ChangeSalary")
@ResponseWrapper(localName = "changeSalaryResponse", targetNamespace = "http://ws.technoserv.ru/", className = "ru.technoserv.ws.ChangeSalaryResponse")
@Action(input = "http://ws.technoserv.ru/EmployeeWebService/changeSalaryRequest", output = "http://ws.technoserv.ru/EmployeeWebService/changeSalaryResponse")
public void changeSalary(
        @WebParam(name = "employeeId", targetNamespace = "")
                int employeeId,
        @WebParam(name = "Salary", targetNamespace = "")
                BigDecimal salary);
项目:rapidminer    文件:ProcessService13.java   
/**
 * 
 * @param processLocation
 * @param executionTime
 * @param processContext
 * @param queueName
 * @return
 *     returns com.rapid_i.repository.wsimport.ExecutionResponse
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "executeProcessWithOffset", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.ExecuteProcessWithOffset")
@ResponseWrapper(localName = "executeProcessWithOffsetResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.ExecuteProcessWithOffsetResponse")
public ExecutionResponse executeProcessWithOffset(
    @WebParam(name = "processLocation", targetNamespace = "")
    String processLocation,
    @WebParam(name = "executionTime", targetNamespace = "")
    Long executionTime,
    @WebParam(name = "processContext", targetNamespace = "")
    ProcessContextWrapper processContext,
    @WebParam(name = "queueName", targetNamespace = "")
    String queueName);
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "ingresosPorDetalle", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.IngresosPorDetalle")
@WebMethod
@ResponseWrapper(localName = "ingresosPorDetalleResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.IngresosPorDetalleResponse")
public java.util.List<py.gov.stp.mh.clasificadores.IngresoDetalle> ingresosPorDetalle(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio
);
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "fuentesDeFinanciamiento", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.FuentesDeFinanciamiento")
@WebMethod
@ResponseWrapper(localName = "fuentesDeFinanciamientoResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.FuentesDeFinanciamientoResponse")
public java.util.List<py.gov.stp.mh.clasificadores.FuenteFinanciamiento> fuentesDeFinanciamiento(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio
);
项目:satisfy    文件:WheatherService.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "getWeatherFor", targetNamespace = HTTP_SERVICES_SHOWCASE_ACCEPTANCETEST_TAPACK_IO, className = "io.tapack.satisfy.services.GetWeatherFor")
@WebMethod(action = "getWeatherFor")
@ResponseWrapper(localName = "getWeatherForResponse", targetNamespace = HTTP_SERVICES_SHOWCASE_ACCEPTANCETEST_TAPACK_IO, className = "io.tapack.satisfy.services.GetWeatherForResponse")
public String getWeatherFor(
        @WebParam(name = "arg0", targetNamespace = "")
        String arg0
);
项目:rapidminer    文件:ManagementService.java   
/**
 * 
 * @param key
 * @return
 *     returns java.lang.String
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getGlobalProperty", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.GetGlobalProperty")
@ResponseWrapper(localName = "getGlobalPropertyResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.GetGlobalPropertyResponse")
public String getGlobalProperty(
    @WebParam(name = "key", targetNamespace = "")
    String key);
项目:rapidminer    文件:ManagementService.java   
/**
 * 
 * @param value
 * @param key
 */
@WebMethod
@RequestWrapper(localName = "setGlobalProperty", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.SetGlobalProperty")
@ResponseWrapper(localName = "setGlobalPropertyResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.SetGlobalPropertyResponse")
public void setGlobalProperty(
    @WebParam(name = "key", targetNamespace = "")
    String key,
    @WebParam(name = "value", targetNamespace = "")
    String value);
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "todosLosProgramasPorAnio", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.TodosLosProgramasPorAnio")
@WebMethod
@ResponseWrapper(localName = "todosLosProgramasPorAnioResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.TodosLosProgramasPorAnioResponse")
public java.util.List<py.gov.stp.mh.clasificadores.Programa> todosLosProgramasPorAnio(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio
);
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "departamentos", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.Departamentos")
@WebMethod
@ResponseWrapper(localName = "departamentosResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.DepartamentosResponse")
public java.util.List<py.gov.stp.mh.clasificadores.Departamento> departamentos(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio,
    @WebParam(name = "pais", targetNamespace = "")
    java.lang.Short pais
);
项目:rapidminer    文件:RepositoryService.java   
/**
 * 
 * @param processLocation
 * @return
 *     returns com.rapid_i.repository.wsimport.Response
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "startNewRevision", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.StartNewRevision")
@ResponseWrapper(localName = "startNewRevisionResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.StartNewRevisionResponse")
public Response startNewRevision(
    @WebParam(name = "processLocation", targetNamespace = "")
    String processLocation);
项目:stuffEngine    文件:EmployeeWebService.java   
/**
 * 
 * @param gradeId
 * @param employeeId
 * @param asyncHandler
 * @return
 *     returns java.util.concurrent.Future<? extends java.lang.Object>
 */
@WebMethod(operationName = "changeGrade")
@RequestWrapper(localName = "changeGrade", targetNamespace = "http://ws.technoserv.ru/", className = "ru.technoserv.ws.ChangeGrade")
@ResponseWrapper(localName = "changeGradeResponse", targetNamespace = "http://ws.technoserv.ru/", className = "ru.technoserv.ws.ChangeGradeResponse")
public Future<?> changeGradeAsync(
        @WebParam(name = "employeeId", targetNamespace = "")
                int employeeId,
        @WebParam(name = "GradeId", targetNamespace = "")
                int gradeId,
        @WebParam(name = "asyncHandler", targetNamespace = "")
                AsyncHandler<ChangeGradeResponse> asyncHandler);
项目:rapidminer    文件:RepositoryService.java   
/**
 * 
 * @param entryLocation
 * @return
 *     returns com.rapid_i.repository.wsimport.Response
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "deleteEntry", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.DeleteEntry")
@ResponseWrapper(localName = "deleteEntryResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.DeleteEntryResponse")
public Response deleteEntry(
    @WebParam(name = "entryLocation", targetNamespace = "")
    String entryLocation);
项目:rapidminer    文件:RepositoryService.java   
/**
 * 
 * @param parentLocation
 * @param subfolderName
 * @return
 *     returns com.rapid_i.repository.wsimport.EntryResponse
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "makeFolder", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.MakeFolder")
@ResponseWrapper(localName = "makeFolderResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.MakeFolderResponse")
public EntryResponse makeFolder(
    @WebParam(name = "parentLocation", targetNamespace = "")
    String parentLocation,
    @WebParam(name = "subfolderName", targetNamespace = "")
    String subfolderName);
项目:stuffEngine    文件:EmployeeWebService.java   
/**
 * 
 * @param positionId
 * @param employeeId
 * @return
 *     returns javax.xml.ws.Response<ru.technoserv.ws.ChangePositionResponse>
 */
@WebMethod(operationName = "changePosition")
@RequestWrapper(localName = "changePosition", targetNamespace = "http://ws.technoserv.ru/", className = "ru.technoserv.ws.ChangePosition")
@ResponseWrapper(localName = "changePositionResponse", targetNamespace = "http://ws.technoserv.ru/", className = "ru.technoserv.ws.ChangePositionResponse")
public Response<ChangePositionResponse> changePositionAsync(
        @WebParam(name = "employeeId", targetNamespace = "")
                int employeeId,
        @WebParam(name = "PositionId", targetNamespace = "")
                int positionId);
项目:rapidminer    文件:RepositoryService.java   
/**
 * 
 * @param processXML
 * @param lastTimestamp
 * @param entryLocation
 * @return
 *     returns com.rapid_i.repository.wsimport.Response
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "storeProcess", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.StoreProcess")
@ResponseWrapper(localName = "storeProcessResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.StoreProcessResponse")
public Response storeProcess(
    @WebParam(name = "entryLocation", targetNamespace = "")
    String entryLocation,
    @WebParam(name = "processXML", targetNamespace = "")
    String processXML,
    @WebParam(name = "lastTimestamp", targetNamespace = "")
    XMLGregorianCalendar lastTimestamp);
项目:rapidminer    文件:RepositoryService.java   
/**
 * 
 * @param newParentFolder
 * @param location
 * @return
 *     returns com.rapid_i.repository.wsimport.EntryResponse
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "move", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.Move")
@ResponseWrapper(localName = "moveResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.MoveResponse")
public EntryResponse move(
    @WebParam(name = "location", targetNamespace = "")
    String location,
    @WebParam(name = "newParentFolder", targetNamespace = "")
    String newParentFolder);
项目:corso-lutech    文件:GlobalWeatherSoap.java   
/**
 * Get all major cities by country name(full / part).
 */
@WebMethod(operationName = "GetCitiesByCountry", action = "http://www.webserviceX.NET/GetCitiesByCountry")
@RequestWrapper(localName = "GetCitiesByCountry", targetNamespace = "http://www.webserviceX.NET", className = "net.webservicex.GetCitiesByCountry")
@ResponseWrapper(localName = "GetCitiesByCountryResponse", targetNamespace = "http://www.webserviceX.NET", className = "net.webservicex.GetCitiesByCountryResponse")
@WebResult(name = "GetCitiesByCountryResult", targetNamespace = "http://www.webserviceX.NET")
public java.lang.String getCitiesByCountry(
    @WebParam(name = "CountryName", targetNamespace = "http://www.webserviceX.NET")
    java.lang.String countryName
);
项目:rapidminer    文件:RepositoryService.java   
/**
 * 
 * @param location
 * @param newName
 * @return
 *     returns com.rapid_i.repository.wsimport.EntryResponse
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "rename", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.Rename")
@ResponseWrapper(localName = "renameResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.RenameResponse")
public EntryResponse rename(
    @WebParam(name = "location", targetNamespace = "")
    String location,
    @WebParam(name = "newName", targetNamespace = "")
    String newName);
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "ingresosPorOrigen", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.IngresosPorOrigen")
@WebMethod
@ResponseWrapper(localName = "ingresosPorOrigenResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.IngresosPorOrigenResponse")
public java.util.List<py.gov.stp.mh.clasificadores.IngresoOrigen> ingresosPorOrigen(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio
);
项目:rapidminer    文件:ProcessService.java   
/**
 * 
 * @param jobId
 * @return
 *     returns java.util.List<java.lang.Integer>
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getProcessIdsForJobId", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetProcessIdsForJobId")
@ResponseWrapper(localName = "getProcessIdsForJobIdResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetProcessIdsForJobIdResponse")
public List<Integer> getProcessIdsForJobId(
    @WebParam(name = "jobId", targetNamespace = "")
    int jobId);
项目:rapidminer    文件:ProcessService.java   
/**
 * 
 * @param scheduledProcessId
 * @return
 *     returns com.rapid_i.repository.wsimport.Response
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "stopProcess", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.StopProcess")
@ResponseWrapper(localName = "stopProcessResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.StopProcessResponse")
public Response stopProcess(
    @WebParam(name = "scheduledProcessId", targetNamespace = "")
    int scheduledProcessId);
项目:rapidminer    文件:ProcessService.java   
/**
 * 
 * @param scheduledProcessId
 * @return
 *     returns com.rapid_i.repository.wsimport.ProcessResponse
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getRunningProcessesInfo", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetRunningProcessesInfo")
@ResponseWrapper(localName = "getRunningProcessesInfoResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetRunningProcessesInfoResponse")
public ProcessResponse getRunningProcessesInfo(
    @WebParam(name = "scheduledProcessId", targetNamespace = "")
    int scheduledProcessId);
项目:rapidminer    文件:ProcessService.java   
/**
 * 
 * @param processLocation
 * @param executionTime
 * @param processContext
 * @return
 *     returns com.rapid_i.repository.wsimport.ExecutionResponse
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "executeProcessSimple", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.ExecuteProcessSimple")
@ResponseWrapper(localName = "executeProcessSimpleResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.ExecuteProcessSimpleResponse")
public ExecutionResponse executeProcessSimple(
    @WebParam(name = "processLocation", targetNamespace = "")
    String processLocation,
    @WebParam(name = "executionTime", targetNamespace = "")
    XMLGregorianCalendar executionTime,
    @WebParam(name = "processContext", targetNamespace = "")
    ProcessContextWrapper processContext);