waffle.windows.auth.IWindowsDomain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waffle-jna Show documentation
Show all versions of waffle-jna Show documentation
WAFFLE JNA implementation
/**
* Waffle (https://github.com/dblock/waffle)
*
* Copyright (c) 2010 - 2014 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;
/**
* A Windows Domain.
*
* @author dblock[at]dblock[dot]org
*/
public interface IWindowsDomain {
/**
* Fully qualified domain name.
*
* @return String.
*/
String getFqn();
/**
* Trust direction.
*
* @return String.
*/
String getTrustDirectionString();
/**
* Trust type.
*
* @return String.
*/
String getTrustTypeString();
}