Package org.globus.workspace.client_core.actions

Examples of org.globus.workspace.client_core.actions.Status_QueryAll


                    new IdentityAuthorization(this.args.getFactoryID()));
        } else {
            conf.setAuthorization(HostAuthorization.getInstance());
        }

        final Status_QueryAll queryAll =
                new Status_QueryAll(this.statusServiceEPR, conf, this.print);

        this.print.infoln("Querying for ALL instances.\n");

        try {
            final Workspace[] workspaces = queryAll.queryAll();
            CloudClientUtil.printCurrent(workspaces,
                                         this.print,
                                         this.args.getHistoryDirectory(),
                                         this.statusServiceEPR);
        } catch (WorkspaceStatusFault e) {
View Full Code Here


                    if (client.isDebugMode()) {
                        debug = System.err;
                    }
                    final Print pr =
                            new Print(opts, System.out, System.err, debug);
                    final Status_QueryAll queryAll =
                            new Status_QueryAll(statusPort, pr);
                    Workspace[] workspaces = queryAll.queryAll();
                    printCurrent(workspaces, pr);
                } catch (Exception e) {
                    die(e, "Problem with query", client.isDebugMode());
                }
            }
View Full Code Here

TOP

Related Classes of org.globus.workspace.client_core.actions.Status_QueryAll

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.