com.jd.httpservice.agent.ArgDefEntry Maven / Gradle / Ivy
package com.jd.httpservice.agent;
class ArgDefEntry {
private int index;
private Class> argType;
private TDef definition;
public int getIndex() {
return index;
}
public Class> getArgType() {
return argType;
}
public TDef getDefinition() {
return definition;
}
public ArgDefEntry(int index, Class> argType, TDef definition) {
this.index = index;
this.argType = argType;
this.definition = definition;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy