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

io.lambdacube.aspecio.InterceptorDescription Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.lambdacube.aspecio;

import java.util.Set;

/**
 * A class describing an interceptor as seen by Aspecio.
 */
public final class InterceptorDescription {

    public final long serviceId;
    public final long bundleId;
    public final int serviceRanking;
    public final Class interceptorClass;
    public final Set extraProperties;

    public InterceptorDescription(long serviceId, long bundleId, int serviceRanking, Class interceptorClass,
            Set extraProperties) {
        super();
        this.serviceId = serviceId;
        this.bundleId = bundleId;
        this.serviceRanking = serviceRanking;
        this.interceptorClass = interceptorClass;
        this.extraProperties = extraProperties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy