Java 类javax.jws.WebMethod 实例源码

项目: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);
项目:rapidminer    文件:ManagementService.java   
/**
 * 
 * @param schema
 * @param port
 * @param system
 * @param pwd
 * @param host
 * @param permittedGroups
 * @param name
 * @param user
 * @return
 *     returns com.rapid_i.repository.wsimport.mgt.Response
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "createDBConnection", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.CreateDBConnection")
@ResponseWrapper(localName = "createDBConnectionResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.mgt.CreateDBConnectionResponse")
public Response createDBConnection(
    @WebParam(name = "name", targetNamespace = "")
    String name,
    @WebParam(name = "host", targetNamespace = "")
    String host,
    @WebParam(name = "port", targetNamespace = "")
    String port,
    @WebParam(name = "user", targetNamespace = "")
    String user,
    @WebParam(name = "pwd", targetNamespace = "")
    String pwd,
    @WebParam(name = "schema", targetNamespace = "")
    String schema,
    @WebParam(name = "system", targetNamespace = "")
    String system,
    @WebParam(name = "permittedGroups", targetNamespace = "")
    List<String> permittedGroups);
项目:rapidminer    文件:UpdateService.java   
@WebMethod
@WebResult(
        targetNamespace = ""
)
@RequestWrapper(
        localName = "getRapidMinerExtensionForOperatorPrefix",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetRapidMinerExtensionForOperatorPrefix"
)
@ResponseWrapper(
        localName = "getRapidMinerExtensionForOperatorPrefixResponse",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetRapidMinerExtensionForOperatorPrefixResponse"
)
String getRapidMinerExtensionForOperatorPrefix(@WebParam(
        name = "forPrefix",
        targetNamespace = ""
) String var1);
项目:rapidminer    文件:UpdateService.java   
@WebMethod
@WebResult(
        targetNamespace = ""
)
@RequestWrapper(
        localName = "getLicenseTextHtml",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetLicenseTextHtml"
)
@ResponseWrapper(
        localName = "getLicenseTextHtmlResponse",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetLicenseTextHtmlResponse"
)
String getLicenseTextHtml(@WebParam(
        name = "licenseName",
        targetNamespace = ""
) String var1);
项目:rapidminer    文件:UpdateService.java   
@WebMethod
@WebResult(
        targetNamespace = ""
)
@RequestWrapper(
        localName = "anyUpdatesSince",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.AnyUpdatesSince"
)
@ResponseWrapper(
        localName = "anyUpdatesSinceResponse",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.AnyUpdatesSinceResponse"
)
boolean anyUpdatesSince(@WebParam(
        name = "since",
        targetNamespace = ""
) XMLGregorianCalendar var1);
项目: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
);
项目:KernelHive    文件:MonitoringClientBean.java   
/**
 *
 * @param arg0
 * @return returns java.lang.String
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getGraphPath", targetNamespace = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.monitoring.service.GetGraphPath")
@ResponseWrapper(localName = "getGraphPathResponse", targetNamespace = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.monitoring.service.GetGraphPathResponse")
@Action(input = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/MonitoringClientBean/getGraphPathRequest", output = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/MonitoringClientBean/getGraphPathResponse")
public String getGraphPath(
        @WebParam(name = "arg0", targetNamespace = "") MonitoredEntity arg0);
项目:LivroJavaComoProgramar10Edicao    文件:Blackjack.java   
/**
 * 
 * @return
 *     returns java.lang.String
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "dealCard", targetNamespace = "http://blackjack.deitel.com/", className = "com.deitel.blackjack.DealCard")
@ResponseWrapper(localName = "dealCardResponse", targetNamespace = "http://blackjack.deitel.com/", className = "com.deitel.blackjack.DealCardResponse")
@Action(input = "http://blackjack.deitel.com/Blackjack/dealCardRequest", output = "http://blackjack.deitel.com/Blackjack/dealCardResponse")
public String dealCard();
项目: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);
项目:spr    文件:UpdatesPresupuesto.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "actualizarEntidad", targetNamespace = "localhost", className = "py.gov.stp.mh.update_presupuesto.ActualizarEntidad")
@WebMethod
@ResponseWrapper(localName = "actualizarEntidadResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.update_presupuesto.ActualizarEntidadResponse")
public java.lang.Short actualizarEntidad(
    @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 = "changeNombreEntidad", targetNamespace = "")
    java.lang.String changeNombreEntidad,
    @WebParam(name = "changeAbrevEntidad", targetNamespace = "")
    java.lang.String changeAbrevEntidad,
    @WebParam(name = "changeSigla", targetNamespace = "")
    java.lang.String changeSigla,
    @WebParam(name = "changeRuc", targetNamespace = "")
    java.lang.String changeRuc,
    @WebParam(name = "changeBaseLegal", targetNamespace = "")
    java.lang.String changeBaseLegal,
    @WebParam(name = "changeMision", targetNamespace = "")
    java.lang.String changeMision,
    @WebParam(name = "changePolitica", targetNamespace = "")
    java.lang.String changePolitica,
    @WebParam(name = "changeObjetivo", targetNamespace = "")
    java.lang.String changeObjetivo,
    @WebParam(name = "changeDiagnostico", targetNamespace = "")
    java.lang.String changeDiagnostico
) throws WsException_Exception;
项目:oscm    文件:ReportingServiceBean.java   
@WebMethod(action = "\"\"")
public RDOSupplierRevenueShareReport getSupplierRevenueShareReport(
        @WebParam(name = "sessionId") String sessionId,
        @WebParam(name = "month") int month,
        @WebParam(name = "year") int year) {
    return delegate.getSupplierRevenueShareReport(sessionId, month, year);
}
项目: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
);
项目:oscm    文件:IdentityService.java   
/**
 * @deprecated Replaced by {@link #addRevokeUserUnitAssignment()}.
 */
@WebMethod
@Deprecated
public boolean addRevokeUserGroupAssignment(
        @WebParam(name = "groupName") String groupName,
        @WebParam(name = "usersToBeAdded") List<VOUser> usersToBeAdded,
        @WebParam(name = "usersToBeRevoked") List<VOUser> usersToBeRevoked)
        throws ObjectNotFoundException, OperationNotPermittedException,
        MailOperationException, NonUniqueBusinessKeyException,
        ConcurrentModificationException;
项目: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 = "objetosDeGatos", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.ObjetosDeGatos")
@WebMethod
@ResponseWrapper(localName = "objetosDeGatosResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.ObjetosDeGatosResponse")
public java.util.List<py.gov.stp.mh.clasificadores.ObjetoGasto> objetosDeGatos(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio
);
项目:oscm    文件:ReportingServiceBean.java   
@WebMethod(action = "\"\"")
public RDOPartnerReports getPartnerRevenueShareReport(
        @WebParam(name = "sessionId") String sessionId,
        @WebParam(name = "month") int month,
        @WebParam(name = "year") int year) {
    return delegate.getPartnerRevenueShareReport(sessionId, month, year);
}
项目:oscm    文件:ReportingServiceBean.java   
@WebMethod(action = "\"\"")
public RDOPartnerReport getResellerRevenueShareReport(
        @WebParam(name = "sessionId") String sessionId,
        @WebParam(name = "month") int month,
        @WebParam(name = "year") int year) {
    return delegate.getResellerRevenueShareReport(sessionId, month, year);
}
项目: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);
项目:ats-framework    文件:AgentWsImpl.java   
/**
 * Web method for execution of Agent actions.
 *
 * @param componentName name of the Agent component
 * @param actionName name of the action to perform
 * @param args arguments - array of ArgumentWrapper
 * @return serialized returned result
 * @throws AgentException if any error occurs
 * @throws InternalComponentException if an exception occurs in the Agent action
 */
@WebMethod
public byte[] executeAction(
                             @WebParam( name = "componentName") String componentName,
                             @WebParam( name = "actionName") String actionName,
                             @WebParam( name = "args") ArgumentWrapper[] args ) throws AgentException,
                                                                                InternalComponentException {

    final String caller = getCaller();
    ThreadsPerCaller.registerThread(caller);

    try {
        Object result = executeAction(caller, componentName, actionName, args);

        ByteArrayOutputStream byteOutStream = new ByteArrayOutputStream();
        ObjectOutputStream objectOutStream = new ObjectOutputStream(byteOutStream);
        objectOutStream.writeObject(result);

        return byteOutStream.toByteArray();
    } catch (Exception e) {
        handleExceptions(e);

        // should never reach this line because handleExceptions() will
        // always throw
        // but the compiler is not aware of this
        return null;
    } finally {
        ThreadsPerCaller.unregisterThread();
    }
}
项目: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 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);
项目:camel-springboot    文件:GlobalWeatherSoap.java   
/**
 * Get weather report for all major cities around the world.
 */
@WebMethod(operationName = "GetWeather", action = "http://www.webserviceX.NET/GetWeather")
@RequestWrapper(localName = "GetWeather", targetNamespace = "http://www.webserviceX.NET", className = "net.webservicex.GetWeather")
@ResponseWrapper(localName = "GetWeatherResponse", targetNamespace = "http://www.webserviceX.NET", className = "net.webservicex.GetWeatherResponse")
@WebResult(name = "GetWeatherResult", targetNamespace = "http://www.webserviceX.NET")
public java.lang.String getWeather(
    @WebParam(name = "CityName", targetNamespace = "http://www.webserviceX.NET")
    java.lang.String cityName,
    @WebParam(name = "CountryName", targetNamespace = "http://www.webserviceX.NET")
    java.lang.String countryName
);
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "catalogoProductosMetas", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.CatalogoProductosMetas")
@WebMethod
@ResponseWrapper(localName = "catalogoProductosMetasResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.CatalogoProductosMetasResponse")
public java.util.List<py.gov.stp.mh.clasificadores.CatalogoProductoMeta> catalogoProductosMetas(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio
);
项目:oscm    文件:ReportingServiceBean.java   
@WebMethod(action = "\"\"")
public VOReportResult getReportOfASupplier(
        @WebParam(name = "sessionId") String sessionId,
        @WebParam(name = "supplierOrgId") String supplierOrgId,
        @WebParam(name = "reportId") String reportId) {
    return delegate
            .getReportOfASupplier(sessionId, supplierOrgId, reportId);

}
项目: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 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);
项目: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
);
项目:delay-repay-bot    文件:LDBServiceSoap.java   
/**
 * 
 * @param accessToken
 * @param parameters
 * @return
 *     returns com.thalesgroup.rtti._2016_02_16.ldb.StationBoardWithDetailsResponseType
 */
@WebMethod(operationName = "GetDepBoardWithDetails", action = "http://thalesgroup.com/RTTI/2015-05-14/ldb/GetDepBoardWithDetails")
@WebResult(name = "GetDepBoardWithDetailsResponse", targetNamespace = "http://thalesgroup.com/RTTI/2016-02-16/ldb/", partName = "parameters")
public StationBoardWithDetailsResponseType getDepBoardWithDetails(
    @WebParam(name = "GetDepBoardWithDetailsRequest", targetNamespace = "http://thalesgroup.com/RTTI/2016-02-16/ldb/", partName = "parameters")
    GetBoardRequestParams parameters,
    @WebParam(name = "AccessToken", targetNamespace = "http://thalesgroup.com/RTTI/2013-11-28/Token/types", header = true, partName = "AccessToken")
    AccessToken accessToken);
项目:KernelHive    文件:MonitoringClientBean.java   
/**
 *
 * @param arg0
 * @return returns
 * java.util.List<pl.gda.pg.eti.kernelhive.common.monitoring.service.UnitDefinition>
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getUnitsForCluster", targetNamespace = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.monitoring.service.GetUnitsForCluster")
@ResponseWrapper(localName = "getUnitsForClusterResponse", targetNamespace = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.monitoring.service.GetUnitsForClusterResponse")
@Action(input = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/MonitoringClientBean/getUnitsForClusterRequest", output = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/MonitoringClientBean/getUnitsForClusterResponse")
public List<UnitDefinition> getUnitsForCluster(
        @WebParam(name = "arg0", targetNamespace = "") int arg0);
项目:spr    文件:UpdatesPresupuesto.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "actualizarSubprograma", targetNamespace = "localhost", className = "py.gov.stp.mh.update_presupuesto.ActualizarSubprograma")
@WebMethod
@ResponseWrapper(localName = "actualizarSubprogramaResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.update_presupuesto.ActualizarSubprogramaResponse")
public java.lang.Short actualizarSubprograma(
    @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 = "changeNombreSubprograma", targetNamespace = "")
    java.lang.String changeNombreSubprograma,
    @WebParam(name = "changeAbrevSubprograma", targetNamespace = "")
    java.lang.String changeAbrevSubprograma,
    @WebParam(name = "changeDescripcion", targetNamespace = "")
    java.lang.String changeDescripcion,
    @WebParam(name = "changeCodigoDepto", targetNamespace = "")
    java.lang.Short changeCodigoDepto,
    @WebParam(name = "changeObjetivo", targetNamespace = "")
    java.lang.String changeObjetivo
) throws WsException_Exception;
项目:KernelHive    文件:MonitoringClientBean.java   
/**
 *
 * @param arg1
 * @param arg0
 * @return returns
 * java.util.List<pl.gda.pg.eti.kernelhive.common.monitoring.service.DeviceDefinition>
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getDevices", targetNamespace = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.monitoring.service.GetDevices")
@ResponseWrapper(localName = "getDevicesResponse", targetNamespace = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.monitoring.service.GetDevicesResponse")
@Action(input = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/MonitoringClientBean/getDevicesRequest", output = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/MonitoringClientBean/getDevicesResponse")
public List<DeviceDefinition> getDevices(
        @WebParam(name = "arg0", targetNamespace = "") int arg0,
        @WebParam(name = "arg1", targetNamespace = "") int arg1);
项目:rapidminer    文件:UpdateService.java   
@WebMethod
@WebResult(
        targetNamespace = ""
)
@RequestWrapper(
        localName = "getTopDownloads",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetTopDownloads"
)
@ResponseWrapper(
        localName = "getTopDownloadsResponse",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetTopDownloadsResponse"
)
List<String> getTopDownloads();
项目:KernelHive    文件:ClientBean.java   
/**
 *
 * @param arg0
 * @return returns
 * java.util.List<pl.gda.pg.eti.kernelhive.common.clientService.JobProgress>
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getWorkflowProgress", targetNamespace = "http://engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.clientService.GetWorkflowProgress")
@ResponseWrapper(localName = "getWorkflowProgressResponse", targetNamespace = "http://engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.clientService.GetWorkflowProgressResponse")
@Action(input = "http://engine.kernelhive.eti.pg.gda.pl/ClientBean/getWorkflowProgressRequest", output = "http://engine.kernelhive.eti.pg.gda.pl/ClientBean/getWorkflowProgressResponse")
public List<JobProgress> getWorkflowProgress(
        @WebParam(name = "arg0", targetNamespace = "") Integer arg0);
项目: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
);
项目:delay-repay-bot    文件:LDBServiceSoap.java   
/**
 * 
 * @param accessToken
 * @param parameters
 * @return
 *     returns com.thalesgroup.rtti._2016_02_16.ldb.DeparturesBoardWithDetailsResponseType
 */
@WebMethod(operationName = "GetFastestDeparturesWithDetails", action = "http://thalesgroup.com/RTTI/2015-05-14/ldb/GetFastestDeparturesWithDetails")
@WebResult(name = "GetFastestDeparturesWithDetailsResponse", targetNamespace = "http://thalesgroup.com/RTTI/2016-02-16/ldb/", partName = "parameters")
public DeparturesBoardWithDetailsResponseType getFastestDeparturesWithDetails(
    @WebParam(name = "GetFastestDeparturesWithDetailsRequest", targetNamespace = "http://thalesgroup.com/RTTI/2016-02-16/ldb/", partName = "parameters")
    GetDeparturesRequestParams parameters,
    @WebParam(name = "AccessToken", targetNamespace = "http://thalesgroup.com/RTTI/2013-11-28/Token/types", header = true, partName = "AccessToken")
    AccessToken accessToken);
项目:module-template    文件:GeoIPServiceHttpPost.java   
/**
 * GeoIPService - GetGeoIP enables you to easily look up countries by IP addresses
 */
@WebMethod(operationName = "GetGeoIP")
@WebResult(name = "GeoIP", targetNamespace = "http://www.webservicex.net/", partName = "Body")
public GeoIP getGeoIP(
    @WebParam(partName = "IPAddress", name = "IPAddress", targetNamespace = "")
    java.lang.String ipAddress
);
项目: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
);
项目:spr    文件:UpdatesPresupuesto.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "actualizarEntidad", targetNamespace = "localhost", className = "py.gov.stp.mh.updates_presupuesto.ActualizarEntidad")
@WebMethod
@ResponseWrapper(localName = "actualizarEntidadResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.updates_presupuesto.ActualizarEntidadResponse")
public java.lang.Short actualizarEntidad(
    @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 = "changeNombreEntidad", targetNamespace = "")
    java.lang.String changeNombreEntidad,
    @WebParam(name = "changeAbrevEntidad", targetNamespace = "")
    java.lang.String changeAbrevEntidad,
    @WebParam(name = "changeSigla", targetNamespace = "")
    java.lang.String changeSigla,
    @WebParam(name = "changeRuc", targetNamespace = "")
    java.lang.String changeRuc,
    @WebParam(name = "changeBaseLegal", targetNamespace = "")
    java.lang.String changeBaseLegal,
    @WebParam(name = "changeMision", targetNamespace = "")
    java.lang.String changeMision,
    @WebParam(name = "changePolitica", targetNamespace = "")
    java.lang.String changePolitica,
    @WebParam(name = "changeObjetivo", targetNamespace = "")
    java.lang.String changeObjetivo,
    @WebParam(name = "changeDiagnostico", targetNamespace = "")
    java.lang.String changeDiagnostico
) throws WsException_Exception;
项目:spr    文件:Clasificadores.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "catalogoDNCP", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.CatalogoDNCP")
@WebMethod
@ResponseWrapper(localName = "catalogoDNCPResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.clasificadores.CatalogoDNCPResponse")
public java.util.List<py.gov.stp.mh.clasificadores.PrecioDNCP> catalogoDNCP(
    @WebParam(name = "anio", targetNamespace = "")
    java.lang.Short anio
);
项目:Java_Good    文件:GeoIPServiceHttpGet.java   
/**
 * GeoIPService - GetGeoIP enables you to easily look up countries by IP addresses
 */
@WebMethod(operationName = "GetGeoIP")
@WebResult(name = "GeoIP", targetNamespace = "http://www.webservicex.net/", partName = "Body")
public GeoIP getGeoIP(
    @WebParam(partName = "IPAddress", name = "IPAddress", targetNamespace = "")
    java.lang.String ipAddress
);