All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.att.ajsc.common.interceptors.PreInterceptor Maven / Gradle / Ivy

There is a newer version: 6.2.0.4-oss
Show newest version
package com.att.ajsc.common.interceptors;

import javax.ws.rs.container.ContainerRequestContext;

import org.springframework.stereotype.Component;

import com.att.ajsc.common.AjscPreInterceptor;
import com.att.ajsc.common.Tracable;

@Component
public class PreInterceptor extends AjscPreInterceptor {

	public PreInterceptor() {
		setPosition(Integer.MIN_VALUE);
	}

	@Tracable(message = "Invoking PreInterceptor")
	public boolean allowOrReject(ContainerRequestContext requestContext) {
		return true;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy