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

org.openl.rules.deploy.ALocalProjectArtefact Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.deploy;

import org.openl.rules.project.abstraction.IProjectArtefact;

public abstract class ALocalProjectArtefact implements IProjectArtefact {

    private final String name;

    public ALocalProjectArtefact(String name) {
        this.name = name;
    }

    @Override
    public String getName() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy