argos/dmp-backend/web/src/main/java/eu/eudat/models/data/dashboard/searchbar/SearchBarItem.java

48 lines
933 B
Java
Raw Normal View History

2018-08-24 17:21:02 +02:00
package eu.eudat.models.data.dashboard.searchbar;
public class SearchBarItem {
private String id;
private String label;
private int type;
private boolean isPublished;
2018-08-24 17:21:02 +02:00
public SearchBarItem(String id, String label, int type, boolean isPublished) {
2018-08-24 17:21:02 +02:00
this.id = id;
this.label = label;
this.type = type;
this.isPublished = isPublished;
2018-08-24 17:21:02 +02:00
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public boolean getIsPublished() {
return isPublished;
}
public void setPublished(boolean published) {
isPublished = published;
}
2018-08-24 17:21:02 +02:00
}