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

org.aksw.facete.v3.api.path.AliasedStepImpl Maven / Gradle / Ivy

There is a newer version: 5.2.0-1
Show newest version
package org.aksw.facete.v3.api.path;

public class AliasedStepImpl
    implements AliasedStep
{
    protected String alias;
    protected StepSpec stepSpec;

    public AliasedStepImpl(String alias, StepSpec stepSpec) {
        super();
        this.alias = alias;
        this.stepSpec = stepSpec;
    }

    @Override
    public String getAlias() {
        return alias;
    }

    @Override
    public StepSpec getSpec() {
        return stepSpec;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy