com.j256.springrequestdoclet.collector.EndPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-request-doclet Show documentation
Show all versions of spring-request-doclet Show documentation
Spring Web Request Doclet Documentation Generator
package com.j256.springrequestdoclet.collector;
/**
* Request end-point information that is mapped to a request path.
*
* @author graywatson
*/
public class EndPoint {
private final String path;
private final ClassInfo classInfo;
private final MethodInfo methodInfo;
public EndPoint(String path, ClassInfo classInfo, MethodInfo methodInfo) {
this.path = path;
this.classInfo = classInfo;
this.methodInfo = methodInfo;
}
public String getPath() {
return path;
}
public ClassInfo getClassInfo() {
return classInfo;
}
public MethodInfo getMethodInfo() {
return methodInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy