com.att.ajsc.common.AjscInterceptor Maven / Gradle / Ivy
package com.att.ajsc.common;
public abstract class AjscInterceptor {
private int position=1;
private String uri="/**";
protected int getPosition() {
return position;
}
protected void setPosition(int position) {
this.position = position;
}
protected String getUri() {
return uri;
}
protected void setUri(String uri) {
this.uri = uri;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy