com.github.libgraviton.workerbase.model.QueueEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worker-base Show documentation
Show all versions of worker-base Show documentation
A base library to simplify the creation of Graviton queue workers.
package com.github.libgraviton.workerbase.model;
/**
* QueueEvent class.
*
* @author Dario Nuevo
* @version $Id: $Id
*/
public class QueueEvent {
public String event;
public String coreUserId;
public GravitonRef document;
public GravitonRef status;
/**
* Getter for the field event
.
*
* @return string
*/
public String getEvent() {
return event;
}
/**
* Setter for the field event
.
*
* @param event a {@link java.lang.String} object.
*/
public void setEvent(String event) {
this.event = event;
}
/**
* Getter for the field document
.
*
* @return GravitonRef
*/
public GravitonRef getDocument() {
return document;
}
/**
* Setter for the field document
.
*
* @param document a {@link com.github.libgraviton.workerbase.model.GravitonRef} object.
*/
public void setDocument(GravitonRef document) {
this.document = document;
}
/**
* Getter for the field status
.
*
* @return GravitonRef
*/
public GravitonRef getStatus() {
return status;
}
/**
* Setter for the field status
.
*
* @param status a {@link com.github.libgraviton.workerbase.model.GravitonRef} object.
*/
public void setStatus(GravitonRef status) {
this.status = status;
}
/**
* Getter for the field coreUserId
.
*
* @return String
*/
public String getCoreUserId() {
return coreUserId;
}
/**
* Setter for the field coreUserId
.
*
* @param coreUserId a {@link java.lang.String} object.
*/
public void setCoreUserId(String coreUserId) {
this.coreUserId = coreUserId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy