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

forklift.consumer.ConsumerService Maven / Gradle / Ivy

There is a newer version: 3.7
Show newest version
package forklift.consumer;

import org.springframework.context.annotation.Configuration;

public class ConsumerService {
    private boolean spring;
    private Class clazz;

    public ConsumerService(Class clazz) {
        this.clazz = clazz;
        this.spring = this.clazz.isAnnotationPresent(Configuration.class);


    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy