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

net.nemerosa.ontrack.ui.resource.DefaultResourceModule Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
package net.nemerosa.ontrack.ui.resource;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.util.Collection;

@Component
public class DefaultResourceModule implements ResourceModule {

    private Collection> decorators;

    @SuppressWarnings("unused")
    public DefaultResourceModule() {
    }

    public DefaultResourceModule(Collection> decorators) {
        this.decorators = decorators;
    }

    @Autowired(required = false)
    public void setDecorators(Collection> decorators) {
        this.decorators = decorators;
    }

    @Override
    public Collection> decorators() {
        return decorators;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy