/** * This class is generated by jOOQ */ package io.cattle.platform.core.model; /** * This class is generated by jOOQ. */ @javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" }, comments = "This class is generated by jOOQ") @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) @javax.persistence.Entity @javax.persistence.Table(name = "task", schema = "cattle") public interface Task extends java.io.Serializable { /** * Setter for <code>cattle.task.id</code>. */ public void setId(java.lang.Long value); /** * Getter for <code>cattle.task.id</code>. */ @javax.persistence.Id @javax.persistence.Column(name = "id", unique = true, nullable = false, precision = 19) public java.lang.Long getId(); /** * Setter for <code>cattle.task.name</code>. */ public void setName(java.lang.String value); /** * Getter for <code>cattle.task.name</code>. */ @javax.persistence.Column(name = "name", unique = true, nullable = false, length = 128) public java.lang.String getName(); // ------------------------------------------------------------------------- // FROM and INTO // ------------------------------------------------------------------------- /** * Load data from another generated Record/POJO implementing the common interface Task */ public void from(io.cattle.platform.core.model.Task from); /** * Copy data into another generated Record/POJO implementing the common interface Task */ public <E extends io.cattle.platform.core.model.Task> E into(E into); }