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

com.github.libgraviton.workerbase.model.QueueEvent Maven / Gradle / Ivy

There is a newer version: 0.26.0
Show newest version
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