001package com.nimbusds.openid.connect.provider.spi.internal.sessionstore;
002
003
004/**
005 * Subject (end-user) session ID.
006 */
007public interface SubjectSessionID {
008
009
010        /**
011         * Returns the string value.
012         *
013         * @return The string value.
014         */
015        String getValue();
016}