Java 类javax.jws.WebParam 实例源码

项目: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    文件: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    文件: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;
项目:rapidminer    文件:UpdateService.java   
@WebMethod
@WebResult(
        targetNamespace = ""
)
@RequestWrapper(
        localName = "getExtensions",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetExtensions"
)
@ResponseWrapper(
        localName = "getExtensionsResponse",
        targetNamespace = "http://ws.update.deployment.rapid_i.com/",
        className = "com.rapidminer.deployment.client.wsimport.GetExtensionsResponse"
)
List<String> getExtensions(@WebParam(
        name = "basePackage",
        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);
项目:ats-framework    文件:AgentWsImpl.java   
/**
 * Tells if an Agent component is loaded, so its actions can be called
 *
 * @param componentName the name of the component
 * @return whether it is available
 */
@WebMethod
public boolean isComponentLoaded(
                                  @WebParam( name = "componentName") String componentName ) {

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

    try {
        boolean isLoaded = ActionHandler.isComponentLoaded(caller, componentName);
        log.info("Agent component '" + componentName + "' is " + (isLoaded
                                                                           ? ""
                                                                           : "not ")
                 + "loaded for caller with IP " + caller);
        return isLoaded;
    } finally {
        ThreadsPerCaller.unregisterThread();
    }
}
项目:openjdk-jdk10    文件:WebServiceVisitor.java   
protected int getModeParameterCount(ExecutableElement method, WebParam.Mode mode) {
    WebParam webParam;
    int cnt = 0;
    for (VariableElement param : method.getParameters()) {
        webParam = param.getAnnotation(WebParam.class);
        if (webParam != null) {
            if (webParam.header())
                continue;
            if (isEquivalentModes(mode, webParam.mode()))
                cnt++;
        } else {
            if (isEquivalentModes(mode, WebParam.Mode.IN)) {
                cnt++;
            }
        }
    }
    return cnt;
}
项目: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
);
项目:ats-framework    文件:AgentWsImpl.java   
/**
 * Queue has already finished and the Test Executor is asking for the
 * queue execution results.
 *
 * There is theoretical chance to be called by more than one thread on Test Executor side,
 * when more than one queue is started in non-blocking mode. That's why it is synchronized
 *
 * @param queueName
 * @return
 * @throws AgentException
 */
@WebMethod
public synchronized byte[] getActionExecutionResults(
                                                      @WebParam( name = "name") String queueName ) throws AgentException {

    try {
        ByteArrayOutputStream byteOutStream = new ByteArrayOutputStream();
        ObjectOutputStream objectOutStream = new ObjectOutputStream(byteOutStream);
        objectOutStream.writeObject(QueueExecutionStatistics.getInstance()
                                                            .getActionExecutionResults(queueName));

        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;
    }
}
项目:OpenJSharp    文件:WebServiceVisitor.java   
protected int getModeParameterCount(ExecutableElement method, WebParam.Mode mode) {
    WebParam webParam;
    int cnt = 0;
    for (VariableElement param : method.getParameters()) {
        webParam = param.getAnnotation(WebParam.class);
        if (webParam != null) {
            if (webParam.header())
                continue;
            if (isEquivalentModes(mode, webParam.mode()))
                cnt++;
        } else {
            if (isEquivalentModes(mode, WebParam.Mode.IN)) {
                cnt++;
            }
        }
    }
    return cnt;
}
项目: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    文件: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);
项目:rapidminer    文件:ProcessService13.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);
项目:oscm    文件:ReportingServiceBean.java   
@WebMethod(action = "\"\"")
public RDOSupplierRevenueShareReports getSuppliersRevenueShareReport(
        @WebParam(name = "sessionId") String sessionId,
        @WebParam(name = "month") int month,
        @WebParam(name = "year") int year) {
    return delegate.getSuppliersRevenueShareReport(sessionId, month, year);
}
项目:oscm    文件:ReportingServiceBean.java   
@WebMethod(action = "\"\"")
public RDODetailedBilling getBillingDetailsOfASupplierReport(
        @WebParam(name = "sessionId") String sessionId,
        @WebParam(name = "billingKey") long billingKey) {
    return delegate.getBillingDetailsOfASupplierReport(sessionId,
            billingKey);
}
项目:spr    文件:UpdatesPresupuesto.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "actualizarProyecto", targetNamespace = "localhost", className = "py.gov.stp.mh.update_presupuesto.ActualizarProyecto")
@WebMethod
@ResponseWrapper(localName = "actualizarProyectoResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.update_presupuesto.ActualizarProyectoResponse")
public java.lang.Short actualizarProyecto(
    @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 = "changeUnrCodigo", targetNamespace = "")
    java.lang.Short changeUnrCodigo,
    @WebParam(name = "changeNombreProyecto", targetNamespace = "")
    java.lang.String changeNombreProyecto,
    @WebParam(name = "changeAbrevProyecto", targetNamespace = "")
    java.lang.String changeAbrevProyecto,
    @WebParam(name = "changeDescripcion", targetNamespace = "")
    java.lang.String changeDescripcion,
    @WebParam(name = "changeCodigoDepto", targetNamespace = "")
    java.lang.Short changeCodigoDepto,
    @WebParam(name = "changeResultadoEsperado", targetNamespace = "")
    java.lang.String changeResultadoEsperado,
    @WebParam(name = "changeDiagnostico", targetNamespace = "")
    java.lang.String changeDiagnostico,
    @WebParam(name = "changeCodigoFuncional", targetNamespace = "")
    java.lang.Short changeCodigoFuncional
) throws WsException_Exception;
项目: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);
}
项目: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);
项目:spr    文件:UpdatesPresupuesto.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "actualizarProyecto", targetNamespace = "localhost", className = "py.gov.stp.mh.updates_presupuesto.ActualizarProyecto")
@WebMethod
@ResponseWrapper(localName = "actualizarProyectoResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.updates_presupuesto.ActualizarProyectoResponse")
public java.lang.Short actualizarProyecto(
    @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 = "changeUnrCodigo", targetNamespace = "")
    java.lang.Short changeUnrCodigo,
    @WebParam(name = "changeNombreProyecto", targetNamespace = "")
    java.lang.String changeNombreProyecto,
    @WebParam(name = "changeAbrevProyecto", targetNamespace = "")
    java.lang.String changeAbrevProyecto,
    @WebParam(name = "changeDescripcion", targetNamespace = "")
    java.lang.String changeDescripcion,
    @WebParam(name = "changeCodigoDepto", targetNamespace = "")
    java.lang.Short changeCodigoDepto,
    @WebParam(name = "changeResultadoEsperado", targetNamespace = "")
    java.lang.String changeResultadoEsperado,
    @WebParam(name = "changeDiagnostico", targetNamespace = "")
    java.lang.String changeDiagnostico,
    @WebParam(name = "changeCodigoFuncional", targetNamespace = "")
    java.lang.Short changeCodigoFuncional
) throws WsException_Exception;
项目: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);
项目:rapidminer    文件:RepositoryService.java   
/**
 * 
 * @param entryLocation
 * @return
 *     returns java.util.List<com.rapid_i.repository.wsimport.AccessRights>
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getAccessRights", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetAccessRights")
@ResponseWrapper(localName = "getAccessRightsResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.GetAccessRightsResponse")
public List<AccessRights> getAccessRights(
    @WebParam(name = "entryLocation", targetNamespace = "")
    String entryLocation);
项目:rapidminer    文件:RepositoryService.java   
/**
 * 
 * @param accessRights
 * @param entryLocation
 * @return
 *     returns com.rapid_i.repository.wsimport.Response
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "setAccessRights", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.SetAccessRights")
@ResponseWrapper(localName = "setAccessRightsResponse", targetNamespace = "http://service.web.rapidanalytics.de/", className = "com.rapid_i.repository.wsimport.SetAccessRightsResponse")
public Response setAccessRights(
    @WebParam(name = "entryLocation", targetNamespace = "")
    String entryLocation,
    @WebParam(name = "accessRights", targetNamespace = "")
    List<AccessRights> accessRights);
项目: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 = "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
);
项目:openjdk-jdk10    文件:AbstractWrapperBeanGenerator.java   
/**
     * Computes request bean members for a method. Collects all IN and INOUT
     * parameters as request bean fields. In this process, if a parameter
     * has any known JAXB annotations they are collected as well.
     * Special processing for @XmlElement annotation is done.
     *
     * @param method SEI method for which request bean members are computed
     * @return List of request bean members
     */
    public List<A> collectRequestBeanMembers(M method) {

        List<A> requestMembers = new ArrayList<A>();
        int paramIndex = -1;

        for (T param : nav.getMethodParameters(method)) {
            paramIndex++;
            WebParam webParam = annReader.getMethodParameterAnnotation(WebParam.class, method, paramIndex, null);
            if (webParam != null && (webParam.header() || webParam.mode().equals(WebParam.Mode.OUT))) {
                continue;
            }
            T holderType = getHolderValueType(param);
//            if (holderType != null && webParam != null && webParam.mode().equals(WebParam.Mode.IN)) {
//                // Should we flag an error - holder cannot be IN part ??
//                continue;
//            }

            T paramType = (holderType != null) ? holderType : getSafeType(param);
            String paramName = (webParam != null && webParam.name().length() > 0)
                    ? webParam.name() : "arg"+paramIndex;
            String paramNamespace = (webParam != null && webParam.targetNamespace().length() > 0)
                    ? webParam.targetNamespace() : EMTPY_NAMESPACE_ID;

            // Collect JAXB annotations on a parameter
            List<Annotation> jaxbAnnotation = collectJAXBAnnotations(method, paramIndex);

            // If a parameter contains @XmlElement, process it.
            processXmlElement(jaxbAnnotation, paramName, paramNamespace, paramType);
            A member = factory.createWrapperBeanMember(paramType,
                    getPropertyName(paramName), jaxbAnnotation);
            requestMembers.add(member);
        }
        return requestMembers;
    }
项目: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);
项目: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
);
项目:KernelHive    文件:MonitoringClientBean.java   
/**
 *
 * @param arg0
 * @return returns
 * java.util.List<pl.gda.pg.eti.kernelhive.common.monitoring.service.PreviewObject>
 */
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "getPreviewData", targetNamespace = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.monitoring.service.GetPreviewData")
@ResponseWrapper(localName = "getPreviewDataResponse", targetNamespace = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/", className = "pl.gda.pg.eti.kernelhive.common.monitoring.service.GetPreviewDataResponse")
@Action(input = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/MonitoringClientBean/getPreviewDataRequest", output = "http://monitoring.engine.kernelhive.eti.pg.gda.pl/MonitoringClientBean/getPreviewDataResponse")
public List<PreviewObject> getPreviewData(
        @WebParam(name = "arg0", targetNamespace = "") int arg0);
项目:OpenJSharp    文件:WebServiceVisitor.java   
protected void verifyImplAnnotations(TypeElement d) {
    for (ExecutableElement method : ElementFilter.methodsIn(d.getEnclosedElements())) {
        checkForInvalidImplAnnotation(method, WebMethod.class);
        checkForInvalidImplAnnotation(method, Oneway.class);
        checkForInvalidImplAnnotation(method, WebResult.class);
        for (VariableElement param : method.getParameters()) {
            checkForInvalidImplAnnotation(param, WebParam.class);
        }
    }
}
项目:spr    文件:ProyectoPresupuesto.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "obtenerProyecto_PresupuestoDeGastos", targetNamespace = "localhost", className = "py.gov.stp.mh.proyectopresupuesto.ObtenerProyectoPresupuestoDeGastos")
@WebMethod(operationName = "obtenerProyecto_PresupuestoDeGastos")
@ResponseWrapper(localName = "obtenerProyecto_PresupuestoDeGastosResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.proyectopresupuesto.ObtenerProyectoPresupuestoDeGastosResponse")
public java.util.List<py.gov.stp.mh.proyectopresupuesto.PresupuestoGasto> obtenerProyectoPresupuestoDeGastos(
    @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 = "version", targetNamespace = "")
    java.lang.Integer version
);
项目:OpenJSharp    文件:WebServiceVisitor.java   
protected boolean isValidOneWayMethod(ExecutableElement method, TypeElement typeElement) {
    boolean valid = true;
    if (!(method.getReturnType().accept(NO_TYPE_VISITOR, null))) {
        // this is an error, cannot be OneWay and have a return type
        builder.processError(WebserviceapMessages.WEBSERVICEAP_ONEWAY_OPERATION_CANNOT_HAVE_RETURN_TYPE(typeElement.getQualifiedName(), method.toString()), method);
        valid = false;
    }
    VariableElement outParam = getOutParameter(method);
    if (outParam != null) {
        builder.processError(WebserviceapMessages.WEBSERVICEAP_ONEWAY_AND_OUT(typeElement.getQualifiedName(), method.toString()), outParam);
        valid = false;
    }
    if (!isDocLitWrapped() && soapStyle.equals(SOAPStyle.DOCUMENT)) {
        int inCnt = getModeParameterCount(method, WebParam.Mode.IN);
        if (inCnt != 1) {
            builder.processError(WebserviceapMessages.WEBSERVICEAP_ONEWAY_AND_NOT_ONE_IN(typeElement.getQualifiedName(), method.toString()), method);
            valid = false;
        }
    }
    for (TypeMirror thrownType : method.getThrownTypes()) {
        TypeElement thrownElement = (TypeElement) ((DeclaredType) thrownType).asElement();
        if (builder.isServiceException(thrownType)) {
            builder.processError(WebserviceapMessages.WEBSERVICEAP_ONEWAY_OPERATION_CANNOT_DECLARE_EXCEPTIONS(
                    typeElement.getQualifiedName(), method.toString(), thrownElement.getQualifiedName()), method);
            valid = false;
        }
    }
    return valid;
}
项目:delay-repay-bot    文件:LDBServiceSoap.java   
/**
 * 
 * @param accessToken
 * @param parameters
 * @return
 *     returns com.thalesgroup.rtti._2016_02_16.ldb.StationBoardResponseType
 */
@WebMethod(operationName = "GetArrivalDepartureBoard", action = "http://thalesgroup.com/RTTI/2012-01-13/ldb/GetArrivalDepartureBoard")
@WebResult(name = "GetArrivalDepartureBoardResponse", targetNamespace = "http://thalesgroup.com/RTTI/2016-02-16/ldb/", partName = "parameters")
public StationBoardResponseType getArrivalDepartureBoard(
    @WebParam(name = "GetArrivalDepartureBoardRequest", 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);
项目:spr    文件:UpdatesPresupuesto.java   
@WebResult(name = "return", targetNamespace = "")
@RequestWrapper(localName = "actualizarSubprograma", targetNamespace = "localhost", className = "py.gov.stp.mh.updates_presupuesto.ActualizarSubprograma")
@WebMethod
@ResponseWrapper(localName = "actualizarSubprogramaResponse", targetNamespace = "localhost", className = "py.gov.stp.mh.updates_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;
项目: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
);
项目:Java_Good    文件: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
);
项目: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
);
项目: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;
项目:oscm    文件:ReportingServiceBean.java   
@WebMethod(action = "\"\"")
public RDOPartnerReport getBrokerRevenueShareReport(
        @WebParam(name = "sessionId") String sessionId,
        @WebParam(name = "month") int month,
        @WebParam(name = "year") int year) {
    return delegate.getBrokerRevenueShareReport(sessionId, month, year);
}
项目: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);