Package com.sun.enterprise.universal.process

Examples of com.sun.enterprise.universal.process.WindowsRemoteAsadmin


    public String getWindowsDomain() {
        return windowsDomain;
    }

    public WindowsRemoteAsadmin getAsadmin() {
        return new WindowsRemoteAsadmin(remoteInstallRoot, credentials);
    }
View Full Code Here


        String humanreadable = null;
        try {
            this.node = thisNode;
            dcomInfo = new DcomInfo(node);
            List<String> fullcommand = new ArrayList<String>();
            WindowsRemoteAsadmin asadmin = dcomInfo.getAsadmin();

            if (stdinLines != null && !stdinLines.isEmpty())
                setupAuthTokenFile(fullcommand, stdinLines);

            fullcommand.addAll(args);
            humanreadable = dcomInfo.getNadminPath() + " " + commandListToString(fullcommand);


            // This is where the rubber meets the road...
            String out = asadmin.run(fullcommand);


            logger.info(Strings.get("remote.command.summary", humanreadable, out));
            return 0;
        }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.universal.process.WindowsRemoteAsadmin

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.