org.macrocloud.kernel.security.provider.ClientDetails Maven / Gradle / Ivy
package org.macrocloud.kernel.security.provider;
import lombok.Data;
@Data
public class ClientDetails implements IClientDetails {
private String clientId;
private String clientSecret;
private Integer accessTokenValidity;
private Integer refreshTokenValidity;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy