package com.sonymusic.dx.dxuiservice.usm;

/**
 * Session service interface.
 */
public interface USMSessionService {

    /**
     * Check if user has valid session.
     *
     * @param tokenHintId SME token received from authorization header.
     * @return true if session is valid otherwise false.
     */
    boolean isValid(String tokenHintId);
}
