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

org.keycloak.representations.adapters.action.LogoutAction Maven / Gradle / Ivy

package org.keycloak.representations.adapters.action;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public class LogoutAction extends AdminAction {
    public static final String LOGOUT = "LOGOUT";
    protected String user;
    protected int notBefore;

    public LogoutAction() {
    }

    public LogoutAction(String id, int expiration, String resource, String user, int notBefore) {
        super(id, expiration, resource, LOGOUT);
        this.user = user;
    }

    public String getUser() {
        return user;
    }

    public void setUser(String user) {
        this.user = user;
    }

    public int getNotBefore() {
        return notBefore;
    }

    public void setNotBefore(int notBefore) {
        this.notBefore = notBefore;
    }

    @Override
    public boolean validate() {
        return LOGOUT.equals(action);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy