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

org.jboss.resteasy.reactive.common.model.ResourceFeature Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package org.jboss.resteasy.reactive.common.model;

import jakarta.ws.rs.core.Feature;

import org.jboss.resteasy.reactive.spi.BeanFactory;

public class ResourceFeature {

    private String className;

    public ResourceFeature setClassName(String className) {
        this.className = className;
        return this;
    }

    public String getClassName() {
        return className;
    }

    private BeanFactory factory;

    public BeanFactory getFactory() {
        return factory;
    }

    public void setFactory(BeanFactory factory) {
        this.factory = factory;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy