Package org.apache.cxf.ws.eventing

Examples of org.apache.cxf.ws.eventing.LanguageSpecificStringType


            EndToEndpoint endpoint = (EndToEndpoint)service.create();
            SubscriptionEnd message = new SubscriptionEnd();
            message.setStatus(status.toString());
            if (reason != null) {
                LanguageSpecificStringType reasonElement = new LanguageSpecificStringType();
                reasonElement.setLang("en-US");
                reasonElement.setValue(reason);
                message.getReason().add(reasonElement);
            }
            endpoint.subscriptionEnd(message);

        } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.apache.cxf.ws.eventing.LanguageSpecificStringType

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.