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

com.evrythng.thng.resource.model.store.jobs.JobLogEntry 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;

import com.evrythng.thng.resource.model.core.ResourceModel;

public final class JobLogEntry extends ResourceModel {

	private static final long serialVersionUID = 7272048986549940726L;

	public enum Type {
		ERROR
	}

	private String jobId;

	private Object payload;

	private Type type;

	public Type getType() {

		return type;
	}

	public void setType(final Type type) {

		this.type = type;
	}

	public Object getPayload() {

		return payload;
	}

	public void setPayload(final Object payload) {

		this.payload = payload;
	}

	public void setJobId(final String jobId) {

		this.jobId = jobId;
	}

	public String getJobId() {

		return jobId;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy