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

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

There is a newer version: 0.7.9
Show newest version
package com.podio.app;

import java.util.List;

public class ApplicationUpdate extends ApplicationBase {

	/**
	 * True if all space members should be resubscribed to this app, false
	 * otherwise
	 */
	private boolean resubscribe;

	private List fields;

	public ApplicationUpdate() {
		super();
	}

	public ApplicationUpdate(boolean resubscribe,
			ApplicationConfiguration configuration,
			List fields) {
		super(configuration);
		this.resubscribe = resubscribe;
		this.fields = fields;
	}

	public boolean isResubscribe() {
		return resubscribe;
	}

	public void setResubscribe(boolean resubscribe) {
		this.resubscribe = resubscribe;
	}

	public List getFields() {
		return fields;
	}

	public void setFields(List fields) {
		this.fields = fields;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy