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

org.swiftboot.auth.service.UserAuthService Maven / Gradle / Ivy

The newest version!
package org.swiftboot.auth.service;

import org.swiftboot.auth.controller.AuthenticatedResponse;

/**
 * The authentication service for user weill implemented and invoked by you.
 *
 * @author swiftech
 * @see Session
 * @since 2.2
 */
public interface UserAuthService {

    /**
     * Authenticate user and return a valid {@link Session} object if success.
     *
     * @param loginId
     * @param loginPwd
     * @return
     */
     AuthenticatedResponse userSignIn(String loginId, String loginPwd);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy