![JAR search and dependency download from the Maven repository](/logo.png)
com.github.kongchen.swagger.docgen.remote.model.JAuthorizationScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-maven-plugin Show documentation
Show all versions of swagger-maven-plugin Show documentation
A maven build plugin which helps you generate API document during build phase
package com.github.kongchen.swagger.docgen.remote.model;
import com.wordnik.swagger.model.AuthorizationScope;
/**
* Created by chekong on 10/11/14.
*/
public class JAuthorizationScope implements CanBeSwaggerModel {
private String scope;
private String description;
public void setScope(String scope) {
this.scope = scope;
}
public void setDescription(String description) {
this.description = description;
}
public String getScope() {
return scope;
}
public String getDescription() {
return description;
}
@Override
public AuthorizationScope toSwaggerModel() {
return new AuthorizationScope(scope, description);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy