All Downloads are FREE. Search and download functionalities are using the official Maven repository.

waffle.windows.auth.IWindowsAccount Maven / Gradle / Ivy

There is a newer version: 1.8.1
Show newest version
/**
 * Waffle (https://github.com/dblock/waffle)
 *
 * Copyright (c) 2010 - 2015 Application Security, Inc.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Application Security, Inc.
 */
package waffle.windows.auth;

/**
 * Windows account.
 * 
 * @author dblock[at]dblock[dot]org
 */
public interface IWindowsAccount {

    /**
     * Security identifier.
     * 
     * @return String in the S- format.
     */
    String getSidString();

    /**
     * Fully qualified username.
     * 
     * @return String.
     */
    String getFqn();

    /**
     * User name.
     * 
     * @return String.
     */
    String getName();

    /**
     * Domain name.
     * 
     * @return String.
     */
    String getDomain();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy