org.ogema.frameworkadministration.json.AppsJsonAppFile Maven / Gradle / Ivy
/**
* This file is part of OGEMA.
*
* OGEMA is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3
* as published by the Free Software Foundation.
*
* OGEMA 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OGEMA. If not, see .
*/
package org.ogema.frameworkadministration.json;
import java.io.Serializable;
/**
*
* @author tgries
*/
public class AppsJsonAppFile implements Serializable {
private static final long serialVersionUID = -3061471962556533403L;
private String name;
private String iconBase64;
private String type;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getIconBase64() {
return iconBase64;
}
public void setIconBase64(String iconBase64) {
this.iconBase64 = iconBase64;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy