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

org.duracloud.snapshot.service.impl.BatchJobBuilderManager Maven / Gradle / Ivy

/*
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 *     http://duracloud.org/license/
 */
package org.duracloud.snapshot.service.impl;

import java.util.HashMap;
import java.util.Map;

import org.duracloud.snapshot.db.model.Restoration;
import org.duracloud.snapshot.db.model.Snapshot;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

/**
 * @author Daniel Bernstein
 *         Date: Jul 25, 2014
 */
@Component
public class BatchJobBuilderManager  {
    
    private static Logger log = LoggerFactory.getLogger(BatchJobBuilderManager.class);
    
    @SuppressWarnings("rawtypes")
    private Map builders = new HashMap<>();
    
    @Autowired
    public BatchJobBuilderManager(SnapshotJobBuilder snapshot,
                                  RestoreJobBuilder restoration){
        this.builders.put(Snapshot.class, snapshot);
        this.builders.put(Restoration.class, restoration);
    }
    
    public BatchJobBuilder getBuilder(Object entity)  {
        BatchJobBuilder builder = this.builders.get(entity.getClass());
        if (builder == null) {
            throw new RuntimeException("No builder registered for "
                + entity.getClass());
        }
        
        log.debug("found {} for {}", builder, entity);
        return builder;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy