/** * Copyright (c) Codice Foundation * <p> * This is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser * General Public License as published by the Free Software Foundation, either version 3 of the * License, or any later version. * <p> * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. A copy of the GNU Lesser General Public License * is distributed along with this program and can be found at * <http://www.gnu.org/licenses/lgpl.html>. */ package org.codice.ddf.ui.admin.api; import java.io.Serializable; import java.util.ArrayList; import java.util.List; public class SystemPropertyDetails implements Serializable { private String title; private String description; private List<String> options = new ArrayList<>(); private String key; private String value; private String defaultValue; public SystemPropertyDetails(String title, String description, List<String> options, String key, String value) { this.title = title; this.description = description; this.options = options; this.key = key; this.value = value; this.defaultValue = value; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public List<String> getOptions() { return options; } public void setOptions(List<String> values) { this.options = values; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getDefaultValue() { return defaultValue; } }