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

org.integratedmodelling.kserver.resources.services.AbstractResourceService Maven / Gradle / Ivy

There is a newer version: 0.9.10
Show newest version
package org.integratedmodelling.kserver.resources.services;

import org.integratedmodelling.common.interfaces.ResourceService;
import org.springframework.context.ApplicationContext;

public abstract class AbstractResourceService implements ResourceService {

    protected ApplicationContext applicationContext;

    /**
     * Trick to add the application context to components we can't define as such.
     * 
     * @param appContext
     */
    public void setApplicationContext(ApplicationContext appContext) {
        this.applicationContext = appContext;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy