Examples of describeInvoker()


Examples of org.hpi.dialogue.protocol.service.HPIClientProtocol.describeInvoker()

        try {
            LoginResponse loginResponse = this.parent.getParent().getLoginResponse();
            this.invokerId = this.parent.getFormList().getString(this.parent.getFormList().getSelectedIndex());
            HPIClientProtocol clientProtocol = this.parent.getParent().getHPIClientProtocol();
           
            DescribeInvokerResponse describeInvokerResponse = clientProtocol.describeInvoker(loginResponse.getSessionId(), invokerId);
            if (describeInvokerResponse.getStatus().equals(Response.Status.SUCCESS)) {
                Invoker invoker = describeInvokerResponse.getInvoker();
               
                this.lblInvokerId = new StringItem("Invoker Id: ",  invoker.getId());
                this.lblInvokerDescription = new StringItem("Invoker Description: ",  invoker.getDescription());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.