ph.com.nightowlstudios.dto.DTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edge Show documentation
Show all versions of edge Show documentation
A simple library for building REST API using Vertx.
package ph.com.nightowlstudios.dto;
import io.vertx.core.json.JsonObject;
/**
* @author Joseph Harvey Angeles - yev
* @since 4/17/21
**/
public abstract class DTO {
public JsonObject toJson() {
return JsonObject.mapFrom(this);
}
}