/* * 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.screens.datamodeller.backend.server.indexing; import java.io.Serializable; import java.util.Date; /** * Changes to this file can break IndexJavaFileTest unit test. */ public class Pojo1 extends Date implements Serializable { private java.math.BigDecimal o_BigDecimal; private java.math.BigInteger o_BigInteger; private java.lang.Boolean o_Boolean; private java.lang.Byte o_Byte; private java.lang.Character o_Character; private java.util.Date o_Date; private java.lang.Double o_Double; private java.lang.Float o_Float; private java.lang.Integer o_Integer; private java.lang.Long o_Long; private java.lang.Short o_Short; private java.lang.String o_String; private boolean p_boolean; private byte p_byte; private char p_char; private double p_double; private float p_float; private int p_int; private long p_long; private short p_short; }