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

com.evrythng.thng.resource.model.store.jobs.JobOption Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
/*
 * (c) Copyright 2016 EVRYTHNG Ltd London / Zurich
 * www.evrythng.com
 */

package com.evrythng.thng.resource.model.store.jobs;

public final class JobOption> {

	private TYPE type;
	public static final String FIELD_TYPE = "type";
	private Boolean enabled;
	public static final String FIELD_ENABLED = "enabled";

	public JobOption() {
		// for JSON deserialization
	}

	public JobOption(final TYPE type, final Boolean enabled) {

		this.type = type;
		this.enabled = enabled;
	}

	public final Boolean getEnabled() {

		return enabled;
	}

	public final void setEnabled(final Boolean enabled) {

		this.enabled = enabled;
	}

	public final TYPE getType() {

		return type;
	}

	public final void setType(final TYPE type) {

		this.type = type;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy