/* * Copyright 2016 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.kie.workbench.common.services.datamodeller.driver.package1; import javax.persistence.Entity; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; /** * This class was automatically generated by the data modeler tool. */ @Entity( name = "Pojo1Entity" ) @Table( name = "POJO1", catalog = "CATALOG_NAME", schema = "SCHEMA_NAME", uniqueConstraints = { @UniqueConstraint( name = "constraint1", columnNames = { "column1", "column2" } ), @UniqueConstraint( name = "constraint2", columnNames = { "column3", "column4" } ) } ) @SequenceGenerator(name="pojo1IdSeq", sequenceName="POJO_ID_SEQ", allocationSize=1) @org.kie.api.definition.type.TypeSafe(true) @org.kie.api.definition.type.Role(org.kie.api.definition.type.Role.Type.EVENT) @org.kie.api.definition.type.Label("Pojo1Label") @org.kie.api.definition.type.Description("Pojo1Description") @org.kie.api.definition.type.Duration("duration") @org.kie.api.definition.type.Timestamp("timestamp") @org.kie.api.definition.type.ClassReactive @org.kie.api.definition.type.Expires("1h25m") public class Pojo1 extends org.kie.workbench.common.services.datamodeller.driver.package2.Pojo2 implements java.io.Serializable { static final long serialVersionUID = 1L; @org.kie.api.definition.type.Position(0) @org.kie.api.definition.type.Key @org.kie.api.definition.type.Label("field1Label") @org.kie.api.definition.type.Description("field1Description") private Character field1; @org.kie.api.definition.type.Position(1) private Integer duration; @org.kie.api.definition.type.Position(2) private java.util.Date timestamp; @org.kie.api.definition.type.Position(3) @org.kie.api.definition.type.Label("field2Label") @org.kie.api.definition.type.Description("field2Description") @org.kie.api.definition.type.Key private char field2; public Character getField1() { return this.field1; } public void setField1(Character field1) { this.field1 = field1; } public Integer getDuration() { return this.duration; } public void setDuration(Integer duration) { this.duration = duration; } public java.util.Date getTimestamp() { return this.timestamp; } public void setTimestamp(java.util.Date timestamp) { this.timestamp = timestamp; } public char getField2() { return this.field2; } public void setField2(char field2) { this.field2 = field2; } public Pojo1() { } public Pojo1(Character field1, Integer duration, java.util.Date timestamp, char field2) { this.field1 = field1; this.duration = duration; this.timestamp = timestamp; this.field2 = field2; } public Pojo1(Character field1, char field2) { this.field1 = field1; this.field2 = field2; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; org.kie.workbench.common.services.datamodeller.driver.package1.Pojo1 that = (org.kie.workbench.common.services.datamodeller.driver.package1.Pojo1) o; if (field1 != null ? !field1.equals(that.field1) : that.field1 != null) return false; if (field2 != that.field2) return false; return true; } @Override public int hashCode() { int result = 17; result = 31 * result + (field1 != null ? field1.hashCode() : 0); result = 31 * result + (int) field2; return result; } }