package com.service; public interface JwtService { String generateToken(String userId); void parseToken(String token); }