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

com.github.yiuman.citrus.security.verify.JwtVerificationRepository Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.github.yiuman.citrus.security.verify;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * @author yiuman
 * @date 2020/4/6
 */
public class JwtVerificationRepository implements VerificationRepository {


    @Override
    public void save(HttpServletRequest request, HttpServletResponse response, Verification verification) {

    }

    @Override
    public Verification find(HttpServletRequest request) {
        throw new UnsupportedOperationException("Method not implemented.");
    }

    @Override
    public void remove(HttpServletRequest request) {
        throw new UnsupportedOperationException("Method not implemented.");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy