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

org.fabric3.runtime.ant.test.WireHolderImpl Maven / Gradle / Ivy

package org.fabric3.runtime.ant.test;

import java.util.LinkedHashMap;
import java.util.Map;

import org.fabric3.spi.wire.Wire;
import org.fabric3.test.spi.TestWireHolder;

/**
 * TestWireHolder implementation for the Ant runtime.
 */
public class WireHolderImpl implements TestWireHolder {
    Map wires = new LinkedHashMap();

    public Map getWires() {
        return wires;
    }

    public void add(String testName, Wire wire) {
        wires.put(testName, wire);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy