All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.podio.app.ApplicationConfiguration Maven / Gradle / Ivy
package com.podio.app;
import java.util.List;
public class ApplicationConfiguration extends ApplicationConfigurationBase {
/**
* A comma separated list of the tasks that will automatically be created
* when a new item is added
*/
private List tasks;
public ApplicationConfiguration() {
super();
}
public ApplicationConfiguration(String name, String itemName,
String description, String usage, String externalId, String icon,
boolean allowEdit, ApplicationViewType defaultView,
boolean allowAttachments, boolean allowComments, boolean fivestar,
String fivestarLabel, boolean approved, boolean thumbs,
String thumbsLabel, boolean rsvp, String rsvpLabel, boolean yesno,
String yesnoLabel, List tasks) {
super(name, itemName, description, usage, externalId, icon, allowEdit,
defaultView, allowAttachments, allowComments, fivestar,
fivestarLabel, approved, thumbs, thumbsLabel, rsvp, rsvpLabel,
yesno, yesnoLabel);
this.tasks = tasks;
}
public List getTasks() {
return tasks;
}
public void setTasks(List tasks) {
this.tasks = tasks;
}
}