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

com.highway2urhell.domain.FrameworkInformations Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.highway2urhell.domain;

import java.util.ArrayList;
import java.util.List;

public class FrameworkInformations {

    private String frameworkName;
    private String version = "UNKNOWN";
    private String details;
    private List listEntryPath = new ArrayList();

    public String getFrameworkName() {
        return frameworkName;
    }

    public void setFrameworkName(String frameworkName) {
        this.frameworkName = frameworkName;
    }

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    public String getDetails() {
        return details;
    }

    public void setDetails(String details) {
        this.details = details;
    }

    public List getListEntryPath() {
        return listEntryPath;
    }

    public void setListEntryPath(List listEntryPath) {
        this.listEntryPath = listEntryPath;
    }

    public boolean hasEntryPaths() {
        return !listEntryPath.isEmpty();
    }

    @Override
    public String toString() {
        return "FrameworkInformations [frameworkName=" + frameworkName
                + ", version=" + version + ", details=" + details
                + ", listEntryPath=" + listEntryPath + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy