All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.podio.app.ApplicationConfigurationCreate Maven / Gradle / Ivy

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy