com.kicksolutions.swagger.plantuml.vo.MethodDefinitions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-plantuml-core Show documentation
Show all versions of swagger-plantuml-core Show documentation
Core POM to generate Plant UML from Swagger
The newest version!
package com.kicksolutions.swagger.plantuml.vo;
/**
*
* @author MSANTOSH
*
*/
public class MethodDefinitions {
private String returnType;
private String methodDefinition;
public MethodDefinitions(String returnType, String methodDefinition) {
super();
this.returnType = returnType;
this.methodDefinition = methodDefinition;
}
public MethodDefinitions() {
super();
}
public String getReturnType() {
return returnType;
}
public void setReturnType(String returnType) {
this.returnType = returnType;
}
public String getMethodDefinition() {
return methodDefinition;
}
public void setMethodDefinition(String methodDefinition) {
this.methodDefinition = methodDefinition;
}
@Override
public String toString() {
return "MethodDefinitions [returnType=" + returnType + ", methodDefinition=" + methodDefinition + "]";
}
}