Package com.ibm.xmlns.stdwip.webServices.wsResourceProperties

Examples of com.ibm.xmlns.stdwip.webServices.wsResourceProperties.GetResourcePropertyResponseDocument$GetResourcePropertyResponse


    @WebResult(name = "GetResourcePropertyResponse", partName = "GetResourcePropertyResponse", targetNamespace = "http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd")
    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
    public GetResourcePropertyResponse getResourceProperty(
            @WebParam(name = "GetResourceProperty", partName = "GetResourcePropertyRequest", targetNamespace = "http://docs.oasis-open.org/wsrf/2004/06/wsrf-WS-ResourceProperties-1.2-draft-01.xsd")
            QName qName) throws InvalidResourcePropertyQNameFault, ResourceUnknownFault {
        GetResourcePropertyResponse answer = new GetResourcePropertyResponse();
        /** TODO */
        return answer;
    }
View Full Code Here


    public void setTerminationTime(XMLGregorianCalendar terminationTime) {
        this.terminationTime = terminationTime;
    }

    public GetResourcePropertyResponse getResourceProperty(EndpointReferenceType resource, QName request) {
        GetResourcePropertyResponse answer = new GetResourcePropertyResponse();
        return answer;
    }
View Full Code Here

        if (TOPIC_EXPRESSION_QNAME.equals(property)) {
            // TODO
        } else if (FIXED_TOPIC_SET_QNAME.equals(property)) {
            // TODO
        } else if (TOPIC_EXPRESSION_DIALECT_QNAME.equals(property)) {
            GetResourcePropertyResponse r = new GetResourcePropertyResponse();
            try {
                r.getAny().add(new JAXBElement<URI>(TOPIC_EXPRESSION_DIALECT_QNAME,
                        URI.class, new URI(JmsTopicExpressionConverter.SIMPLE_DIALECT)));
            } catch (URISyntaxException e) {
                r.getAny().add(new JAXBElement<String>(TOPIC_EXPRESSION_DIALECT_QNAME,
                    String.class, JmsTopicExpressionConverter.SIMPLE_DIALECT));              
            }
            return r;
        } else if (TOPIC_SET_QNAME.equals(property)) {
            // TODO
View Full Code Here

TOP

Related Classes of com.ibm.xmlns.stdwip.webServices.wsResourceProperties.GetResourcePropertyResponseDocument$GetResourcePropertyResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.