Package hudson.os.windows.ManagedWindowsServiceAccount

Examples of hudson.os.windows.ManagedWindowsServiceAccount.LocalSystem


    public ManagedWindowsServiceLauncher(String userName, String password, String host) {
        this(userName, password, host, null, null);
    }

    public ManagedWindowsServiceLauncher(String userName, String password, String host, AccountInfo account) {
        this(userName,password,host,account==null ? new LocalSystem() : new AnotherUser(account.userName,account.password), null);
    }
View Full Code Here


    public ManagedWindowsServiceLauncher(String userName, String password, String host, ManagedWindowsServiceAccount account, String vmargs) {
        this.userName = userName;
        this.password = Secret.fromString(password);
        this.vmargs = Util.fixEmptyAndTrim(vmargs);
        this.host = Util.fixEmptyAndTrim(host);
        this.account = account==null ? new LocalSystem() : account;
        this.logOn = null;
    }
View Full Code Here

TOP

Related Classes of hudson.os.windows.ManagedWindowsServiceAccount.LocalSystem

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.