com.github.libgraviton.workerbase.model.GravitonRef 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;
/**
* GravitonRef class.
*
* @author Dario Nuevo
* @version $Id: $Id
* @since 0.7.0
*/
public class GravitonRef {
public String $ref;
/**
* Getter for the field $ref
.
*
* @return a {@link java.lang.String} object.
*/
public String get$ref() {
return $ref;
}
/**
* Setter for the field $ref
.
*
* @param $ref a {@link java.lang.String} object.
*/
public void set$ref(String $ref) {
this.$ref = $ref;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy