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

com.alexecollins.docker.orchestration.model.Item Maven / Gradle / Ivy

There is a newer version: 2.11.29
Show newest version
package com.alexecollins.docker.orchestration.model;

import lombok.Data;

@Data
public class Item {
    private String path;
    private boolean filter = true;

    public Item() {
    }

    // allows for backwards compatibility
    public Item(String path) {
        this.path = path;
    }

    public String getPath() {
        return path;
    }

    public boolean shouldFilter() {
        return filter;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy