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

org.definitylabs.flue2ent.test.AbstractStep Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package org.definitylabs.flue2ent.test;

import org.definitylabs.flue2ent.Website;

public abstract class AbstractStep implements Step {

    private Website website;

    @Override
    public final Step at(Website website) {
        this.website = website;
        return this;
    }

    protected final Website website() {
        return website;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy