![JAR search and dependency download from the Maven repository](/logo.png)
com.github.taymindis.paas.MethodParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsp-paas Show documentation
Show all versions of jsp-paas Show documentation
Page as a service for JSP to standardize the function by jsp page, guarantee zero downtime
The newest version!
package com.github.taymindis.paas;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
public class MethodParams {
private String className;
private int hashCode;
private Method m;
private Annotation[][] paramAnnotation;
// private Class>[] parameterTypes;
public MethodParams(String className, int hashCode) {
this.className = className;
this.hashCode = hashCode;
}
public Method getM() {
return m;
}
public void setM(Method m) {
this.m = m;
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public int getHashCode() {
return hashCode;
}
public void setHashCode(int hashCode) {
this.hashCode = hashCode;
}
public Annotation[][] getParamAnnotation() {
return paramAnnotation;
}
public void setParamAnnotation(Annotation[][] paramAnnotation) {
this.paramAnnotation = paramAnnotation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy