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

com.catchpoint.trace.lambda.integrations.spring.SpringContextFactory Maven / Gradle / Ivy

The newest version!
package com.catchpoint.trace.lambda.integrations.spring;

import org.springframework.context.ApplicationContext;

/**
 * @author serkan
 */
public interface SpringContextFactory {

    default ApplicationContext createContext(Class configClass) {
        throw new UnsupportedOperationException();
    }

    default ApplicationContext createContext(String configFile) {
        throw new UnsupportedOperationException();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy