package org.theonefx.wcframework.aop;
import org.theonefx.wcframework.aop.annotation.InterceptType;
public class InterceotorInfo {
private MethodMatcher matcher;
private InterceptType type;
private String id;
private String beanId;
private String method;
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
public MethodMatcher getMatcher() {
return matcher;
}
public void setMatcher(MethodMatcher matcher) {
this.matcher = matcher;
}
public InterceptType getType() {
return type;
}
public void setType(InterceptType type) {
this.type = type;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getBeanId() {
return beanId;
}
public void setBeanId(String beanId) {
this.beanId = beanId;
}
}