![JAR search and dependency download from the Maven repository](/logo.png)
com.evrythng.thng.resource.model.store.jobs.JobOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
/*
* (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