Package hudson.os.windows.ManagedWindowsServiceAccount

Examples of hudson.os.windows.ManagedWindowsServiceAccount.AnotherUser


    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


        this.logOn = null;
    }

    public Object readResolve() {
        if (logOn!=null)
            account = new AnotherUser(logOn.userName,logOn.password);
        return this;
    }
View Full Code Here

TOP

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

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.