
com.mangofactory.swagger.models.dto.ImplicitGrant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-models Show documentation
Show all versions of swagger-models Show documentation
This project integrates swagger with the Spring Web MVC framework
The newest version!
package com.mangofactory.swagger.models.dto;
public class ImplicitGrant extends GrantType {
private final LoginEndpoint loginEndpoint;
private final String tokenName;
public ImplicitGrant(LoginEndpoint loginEndpoint, String tokenName) {
super("implicit");
this.loginEndpoint = loginEndpoint;
this.tokenName = tokenName;
}
public LoginEndpoint getLoginEndpoint() {
return loginEndpoint;
}
public String getTokenName() {
return tokenName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy