Example usage for org.apache.commons.vfs2 UserAuthenticator interface-usage

List of usage examples for org.apache.commons.vfs2 UserAuthenticator interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.vfs2 UserAuthenticator interface-usage.

Usage

From source file maspack.fileutil.vfs.ConsoleUserAuthenticator.java

public class ConsoleUserAuthenticator implements UserAuthenticator {

    HashMap<UserAuthenticationData.Type, String> storage = new HashMap<UserAuthenticationData.Type, String>();

    public void clear() {
        storage.clear();

From source file pl.otros.vfs.browser.auth.OtrosUserAuthenticator.java

public interface OtrosUserAuthenticator extends UserAuthenticator {
    public UserAuthenticationDataWrapper getLastUserAuthenticationData();

    public boolean isPasswordSave();

}

From source file maspack.fileutil.vfs.SimpleUserAuthenticator.java

public class SimpleUserAuthenticator implements UserAuthenticator, Comparable<SimpleUserAuthenticator> {

    String username;
    String domain;
    String password;

From source file maspack.fileutil.vfs.EncryptedUserAuthenticator.java

public class EncryptedUserAuthenticator implements UserAuthenticator, Comparable<EncryptedUserAuthenticator> {

    String username;
    String domain;
    String encryptedPassword;
    Cryptor myCryptor;

From source file org.esupportail.portlet.filemanager.services.vfs.auth.DynamicUserAuthenticator.java

/**
 * A simple gateway UserAuthententicatorSerice.getUserPassord allowing dynamic password retrival while
 * connecting to a VFS backend
 * 
 * @author ofranco
 *