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

com.fivefaces.structureclient.config.security.patient.PatientJwtTokenService Maven / Gradle / Ivy

There is a newer version: 1.0.62
Show newest version
package com.fivefaces.structureclient.config.security.patient;

import com.nimbusds.jwt.JWT;

import java.util.Map;

public interface PatientJwtTokenService {

    String generateToken(Map claims, String subject);

    JWT validateToken(String token);

    String getJwtPublicKey();

    String getIssuer();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy