com.podio.app.ApplicationConfigurationCreate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
package com.podio.app;
import java.util.List;
public class ApplicationConfigurationCreate extends
ApplicationConfigurationBase {
/**
* A comma separated list of the tasks that will automatically be created
* when a new item is added
*/
private List tasks;
public ApplicationConfigurationCreate() {
super();
}
public ApplicationConfigurationCreate(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;
}
}