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

org.openl.rules.project.model.PathEntry Maven / Gradle / Ivy

There is a newer version: 5.27.9-jakarta
Show newest version
package org.openl.rules.project.model;

public class PathEntry{

    private String path;

    public PathEntry() {
    }
    
    public PathEntry(String path) {
        this.path = path;
    }

    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy