com.liferay.portal.security.auth.AuthVerifierResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.security.auth;
import com.liferay.portal.kernel.util.StringBundler;
import java.util.HashMap;
import java.util.Map;
/**
* @author Tomas Polesovsky
*/
public class AuthVerifierResult {
public String getPassword() {
return _password;
}
public Map getSettings() {
return _settings;
}
public State getState() {
return _state;
}
public long getUserId() {
return _userId;
}
public void setPassword(String password) {
_password = password;
}
public void setSettings(Map settings) {
_settings = settings;
}
public void setState(State state) {
_state = state;
}
public void setUserId(long userId) {
_userId = userId;
}
@Override
public String toString() {
StringBundler sb = new StringBundler(7);
sb.append("{settings=");
sb.append(_settings);
sb.append(", state=");
sb.append(_state);
sb.append(", userId=");
sb.append(_userId);
sb.append("}");
return sb.toString();
}
public enum State {
NOT_APPLICABLE, INVALID_CREDENTIALS, SUCCESS
}
private String _password;
private Map _settings = new HashMap();
private State _state = State.NOT_APPLICABLE;
private long _userId;
}