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

org.jboss.weld.interceptor.builder.BuildableInterceptionModel Maven / Gradle / Ivy

There is a newer version: 6.0.0.Beta4
Show newest version
package org.jboss.weld.interceptor.builder;

import java.lang.reflect.Method;

import org.jboss.weld.interceptor.spi.metadata.InterceptorMetadata;
import org.jboss.weld.interceptor.spi.model.InterceptionModel;
import org.jboss.weld.interceptor.spi.model.InterceptionType;

/**
 * An interception model that can be manipulated by the builder.
 *
 * @author Marius Bogoevici
 */
public interface BuildableInterceptionModel extends InterceptionModel {

    void setIgnoresGlobals(Method m, boolean b);

    void appendInterceptors(InterceptionType interceptionType, Method method, InterceptorMetadata... interceptors);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy