com.github.jackieonway.swagger.entity.SwaggerContact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-spring-boot-starter Show documentation
Show all versions of swagger-spring-boot-starter Show documentation
Swagger starter project for Spring Boot
The newest version!
/**
* Jackie.
* Copyright (c)) 2019 - 2019 All Right Reserved
*/
package com.github.jackieonway.swagger.entity;
/**
* @author Jackie
* @version $id: SwaggerContact.java v 0.1 2019-10-22 16:43 Jackie Exp $$
*/
public class SwaggerContact {
/**
* author
*/
private String name;
/**
* swagger author service url
*/
private String url;
/**
* author email
*/
private String email;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy