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

com.payneteasy.superfly.security.authentication.HOTPCheckedToken Maven / Gradle / Ivy

package com.payneteasy.superfly.security.authentication;

import com.payneteasy.superfly.api.SSOUser;

/**
 * Token which contains info about a successful HOTP authentication.
 * 
 * @author Roman Puchkovskiy
 */
public class HOTPCheckedToken extends SSOUserTransportAuthenticationToken {
    private static final long serialVersionUID = -7861332629416740520L;

    public HOTPCheckedToken(SSOUser ssoUser) {
        super(ssoUser);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy