http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BitNumberTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BitNumberTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BitNumberTestEntity.java new file mode 100644 index 0000000..50bc6c0 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BitNumberTestEntity.java @@ -0,0 +1,30 @@ +package org.apache.cayenne.testdo.numeric_types.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _BitNumberTestEntity was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _BitNumberTestEntity extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String BIT_COLUMN_PROPERTY = "bitColumn"; + + public static final String ID_PK_COLUMN = "ID"; + + public static final Property<Integer> BIT_COLUMN = new Property<Integer>("bitColumn"); + + public void setBitColumn(Integer bitColumn) { + writeProperty("bitColumn", bitColumn); + } + public Integer getBitColumn() { + return (Integer)readProperty("bitColumn"); + } + +}
http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BitTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BitTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BitTestEntity.java new file mode 100644 index 0000000..91d49dd --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BitTestEntity.java @@ -0,0 +1,30 @@ +package org.apache.cayenne.testdo.numeric_types.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _BitTestEntity was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _BitTestEntity extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String BIT_COLUMN_PROPERTY = "bitColumn"; + + public static final String ID_PK_COLUMN = "ID"; + + public static final Property<Boolean> BIT_COLUMN = new Property<Boolean>("bitColumn"); + + public void setBitColumn(Boolean bitColumn) { + writeProperty("bitColumn", bitColumn); + } + public Boolean getBitColumn() { + return (Boolean)readProperty("bitColumn"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BooleanTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BooleanTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BooleanTestEntity.java new file mode 100644 index 0000000..6651379 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_BooleanTestEntity.java @@ -0,0 +1,30 @@ +package org.apache.cayenne.testdo.numeric_types.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _BooleanTestEntity was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _BooleanTestEntity extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String BOOLEAN_COLUMN_PROPERTY = "booleanColumn"; + + public static final String ID_PK_COLUMN = "ID"; + + public static final Property<Boolean> BOOLEAN_COLUMN = new Property<Boolean>("booleanColumn"); + + public void setBooleanColumn(Boolean booleanColumn) { + writeProperty("booleanColumn", booleanColumn); + } + public Boolean getBooleanColumn() { + return (Boolean)readProperty("booleanColumn"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_DecimalPKTest1.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_DecimalPKTest1.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_DecimalPKTest1.java new file mode 100644 index 0000000..ef70095 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_DecimalPKTest1.java @@ -0,0 +1,40 @@ +package org.apache.cayenne.testdo.numeric_types.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _DecimalPKTest1 was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _DecimalPKTest1 extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String DECIMAL_PK_PROPERTY = "decimalPK"; + @Deprecated + public static final String NAME_PROPERTY = "name"; + + public static final String DECIMAL_PK_PK_COLUMN = "DECIMAL_PK"; + + public static final Property<Double> DECIMAL_PK = new Property<Double>("decimalPK"); + public static final Property<String> NAME = new Property<String>("name"); + + public void setDecimalPK(Double decimalPK) { + writeProperty("decimalPK", decimalPK); + } + public Double getDecimalPK() { + return (Double)readProperty("decimalPK"); + } + + public void setName(String name) { + writeProperty("name", name); + } + public String getName() { + return (String)readProperty("name"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_DecimalPKTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_DecimalPKTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_DecimalPKTestEntity.java new file mode 100644 index 0000000..8f51019 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_DecimalPKTestEntity.java @@ -0,0 +1,42 @@ +package org.apache.cayenne.testdo.numeric_types.auto; + +import java.math.BigDecimal; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _DecimalPKTestEntity was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _DecimalPKTestEntity extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String DECIMAL_PK_PROPERTY = "decimalPK"; + @Deprecated + public static final String NAME_PROPERTY = "name"; + + public static final String DECIMAL_PK_PK_COLUMN = "DECIMAL_PK"; + + public static final Property<BigDecimal> DECIMAL_PK = new Property<BigDecimal>("decimalPK"); + public static final Property<String> NAME = new Property<String>("name"); + + public void setDecimalPK(BigDecimal decimalPK) { + writeProperty("decimalPK", decimalPK); + } + public BigDecimal getDecimalPK() { + return (BigDecimal)readProperty("decimalPK"); + } + + public void setName(String name) { + writeProperty("name", name); + } + public String getName() { + return (String)readProperty("name"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_LongEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_LongEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_LongEntity.java new file mode 100644 index 0000000..3f976b6 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_LongEntity.java @@ -0,0 +1,30 @@ +package org.apache.cayenne.testdo.numeric_types.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _LongEntity was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _LongEntity extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String LONG_FIELD_PROPERTY = "longField"; + + public static final String ID_PK_COLUMN = "ID"; + + public static final Property<Long> LONG_FIELD = new Property<Long>("longField"); + + public void setLongField(Long longField) { + writeProperty("longField", longField); + } + public Long getLongField() { + return (Long)readProperty("longField"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_SmallintTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_SmallintTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_SmallintTestEntity.java new file mode 100644 index 0000000..8be4455 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_SmallintTestEntity.java @@ -0,0 +1,30 @@ +package org.apache.cayenne.testdo.numeric_types.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _SmallintTestEntity was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _SmallintTestEntity extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String SMALLINT_COL_PROPERTY = "smallintCol"; + + public static final String ID_PK_COLUMN = "ID"; + + public static final Property<Short> SMALLINT_COL = new Property<Short>("smallintCol"); + + public void setSmallintCol(Short smallintCol) { + writeProperty("smallintCol", smallintCol); + } + public Short getSmallintCol() { + return (Short)readProperty("smallintCol"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_TinyintTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_TinyintTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_TinyintTestEntity.java new file mode 100644 index 0000000..d31fccd --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/numeric_types/auto/_TinyintTestEntity.java @@ -0,0 +1,30 @@ +package org.apache.cayenne.testdo.numeric_types.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _TinyintTestEntity was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _TinyintTestEntity extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String TINYINT_COL_PROPERTY = "tinyintCol"; + + public static final String ID_PK_COLUMN = "ID"; + + public static final Property<Byte> TINYINT_COL = new Property<Byte>("tinyintCol"); + + public void setTinyintCol(Byte tinyintCol) { + writeProperty("tinyintCol", tinyintCol); + } + public Byte getTinyintCol() { + return (Byte)readProperty("tinyintCol"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/primitive/PrimitivesTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/primitive/PrimitivesTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/primitive/PrimitivesTestEntity.java new file mode 100644 index 0000000..1ad4826 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/primitive/PrimitivesTestEntity.java @@ -0,0 +1,25 @@ +/***************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.cayenne.testdo.primitive; + +import org.apache.cayenne.testdo.primitive.auto._PrimitivesTestEntity; + +public class PrimitivesTestEntity extends _PrimitivesTestEntity { + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/primitive/auto/_PrimitivesTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/primitive/auto/_PrimitivesTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/primitive/auto/_PrimitivesTestEntity.java new file mode 100644 index 0000000..6bdb279 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/primitive/auto/_PrimitivesTestEntity.java @@ -0,0 +1,42 @@ +package org.apache.cayenne.testdo.primitive.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _PrimitivesTestEntity was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _PrimitivesTestEntity extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String BOOLEAN_COLUMN_PROPERTY = "booleanColumn"; + @Deprecated + public static final String INT_COLUMN_PROPERTY = "intColumn"; + + public static final String ID_PK_COLUMN = "ID"; + + public static final Property<Boolean> BOOLEAN_COLUMN = new Property<Boolean>("booleanColumn"); + public static final Property<Integer> INT_COLUMN = new Property<Integer>("intColumn"); + + public void setBooleanColumn(boolean booleanColumn) { + writeProperty("booleanColumn", booleanColumn); + } + public boolean isBooleanColumn() { + Boolean value = (Boolean)readProperty("booleanColumn"); + return (value != null) ? value.booleanValue() : false; + } + + public void setIntColumn(int intColumn) { + writeProperty("intColumn", intColumn); + } + public int getIntColumn() { + Object value = readProperty("intColumn"); + return (value != null) ? (Integer) value : 0; + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMap1.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMap1.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMap1.java new file mode 100644 index 0000000..1927981 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMap1.java @@ -0,0 +1,25 @@ +/***************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.cayenne.testdo.return_types; + +import org.apache.cayenne.testdo.return_types.auto._ReturnTypesMap1; + +public class ReturnTypesMap1 extends _ReturnTypesMap1 { + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMap2.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMap2.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMap2.java new file mode 100644 index 0000000..8d699cf --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMap2.java @@ -0,0 +1,25 @@ +/***************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.cayenne.testdo.return_types; + +import org.apache.cayenne.testdo.return_types.auto._ReturnTypesMap2; + +public class ReturnTypesMap2 extends _ReturnTypesMap2 { + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMapLobs1.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMapLobs1.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMapLobs1.java new file mode 100644 index 0000000..c0f1436 --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/ReturnTypesMapLobs1.java @@ -0,0 +1,25 @@ +/***************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.cayenne.testdo.return_types; + +import org.apache.cayenne.testdo.return_types.auto._ReturnTypesMapLobs1; + +public class ReturnTypesMapLobs1 extends _ReturnTypesMapLobs1 { + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMap1.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMap1.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMap1.java new file mode 100644 index 0000000..0cf2d2f --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMap1.java @@ -0,0 +1,193 @@ +package org.apache.cayenne.testdo.return_types.auto; + +import java.math.BigDecimal; +import java.util.Date; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _ReturnTypesMap1 was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _ReturnTypesMap1 extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String BIGINT_COLUMN_PROPERTY = "bigintColumn"; + @Deprecated + public static final String BIT_COLUMN_PROPERTY = "bitColumn"; + @Deprecated + public static final String BOOLEAN_COLUMN_PROPERTY = "booleanColumn"; + @Deprecated + public static final String CHAR_COLUMN_PROPERTY = "charColumn"; + @Deprecated + public static final String DATE_COLUMN_PROPERTY = "dateColumn"; + @Deprecated + public static final String DECIMAL_COLUMN_PROPERTY = "decimalColumn"; + @Deprecated + public static final String DOUBLE_COLUMN_PROPERTY = "doubleColumn"; + @Deprecated + public static final String FLOAT_COLUMN_PROPERTY = "floatColumn"; + @Deprecated + public static final String INTEGER_COLUMN_PROPERTY = "integerColumn"; + @Deprecated + public static final String LONGVARCHAR_COLUMN_PROPERTY = "longvarcharColumn"; + @Deprecated + public static final String NUMERIC_COLUMN_PROPERTY = "numericColumn"; + @Deprecated + public static final String REAL_COLUMN_PROPERTY = "realColumn"; + @Deprecated + public static final String SMALLINT_COLUMN_PROPERTY = "smallintColumn"; + @Deprecated + public static final String TIME_COLUMN_PROPERTY = "timeColumn"; + @Deprecated + public static final String TIMESTAMP_COLUMN_PROPERTY = "timestampColumn"; + @Deprecated + public static final String TINYINT_COLUMN_PROPERTY = "tinyintColumn"; + @Deprecated + public static final String VARCHAR_COLUMN_PROPERTY = "varcharColumn"; + + public static final String AAAID_PK_COLUMN = "AAAID"; + + public static final Property<Long> BIGINT_COLUMN = new Property<Long>("bigintColumn"); + public static final Property<Boolean> BIT_COLUMN = new Property<Boolean>("bitColumn"); + public static final Property<Boolean> BOOLEAN_COLUMN = new Property<Boolean>("booleanColumn"); + public static final Property<String> CHAR_COLUMN = new Property<String>("charColumn"); + public static final Property<Date> DATE_COLUMN = new Property<Date>("dateColumn"); + public static final Property<BigDecimal> DECIMAL_COLUMN = new Property<BigDecimal>("decimalColumn"); + public static final Property<Double> DOUBLE_COLUMN = new Property<Double>("doubleColumn"); + public static final Property<Float> FLOAT_COLUMN = new Property<Float>("floatColumn"); + public static final Property<Integer> INTEGER_COLUMN = new Property<Integer>("integerColumn"); + public static final Property<String> LONGVARCHAR_COLUMN = new Property<String>("longvarcharColumn"); + public static final Property<BigDecimal> NUMERIC_COLUMN = new Property<BigDecimal>("numericColumn"); + public static final Property<Float> REAL_COLUMN = new Property<Float>("realColumn"); + public static final Property<Short> SMALLINT_COLUMN = new Property<Short>("smallintColumn"); + public static final Property<Date> TIME_COLUMN = new Property<Date>("timeColumn"); + public static final Property<Date> TIMESTAMP_COLUMN = new Property<Date>("timestampColumn"); + public static final Property<Byte> TINYINT_COLUMN = new Property<Byte>("tinyintColumn"); + public static final Property<String> VARCHAR_COLUMN = new Property<String>("varcharColumn"); + + public void setBigintColumn(Long bigintColumn) { + writeProperty("bigintColumn", bigintColumn); + } + public Long getBigintColumn() { + return (Long)readProperty("bigintColumn"); + } + + public void setBitColumn(Boolean bitColumn) { + writeProperty("bitColumn", bitColumn); + } + public Boolean getBitColumn() { + return (Boolean)readProperty("bitColumn"); + } + + public void setBooleanColumn(Boolean booleanColumn) { + writeProperty("booleanColumn", booleanColumn); + } + public Boolean getBooleanColumn() { + return (Boolean)readProperty("booleanColumn"); + } + + public void setCharColumn(String charColumn) { + writeProperty("charColumn", charColumn); + } + public String getCharColumn() { + return (String)readProperty("charColumn"); + } + + public void setDateColumn(Date dateColumn) { + writeProperty("dateColumn", dateColumn); + } + public Date getDateColumn() { + return (Date)readProperty("dateColumn"); + } + + public void setDecimalColumn(BigDecimal decimalColumn) { + writeProperty("decimalColumn", decimalColumn); + } + public BigDecimal getDecimalColumn() { + return (BigDecimal)readProperty("decimalColumn"); + } + + public void setDoubleColumn(Double doubleColumn) { + writeProperty("doubleColumn", doubleColumn); + } + public Double getDoubleColumn() { + return (Double)readProperty("doubleColumn"); + } + + public void setFloatColumn(Float floatColumn) { + writeProperty("floatColumn", floatColumn); + } + public Float getFloatColumn() { + return (Float)readProperty("floatColumn"); + } + + public void setIntegerColumn(Integer integerColumn) { + writeProperty("integerColumn", integerColumn); + } + public Integer getIntegerColumn() { + return (Integer)readProperty("integerColumn"); + } + + public void setLongvarcharColumn(String longvarcharColumn) { + writeProperty("longvarcharColumn", longvarcharColumn); + } + public String getLongvarcharColumn() { + return (String)readProperty("longvarcharColumn"); + } + + public void setNumericColumn(BigDecimal numericColumn) { + writeProperty("numericColumn", numericColumn); + } + public BigDecimal getNumericColumn() { + return (BigDecimal)readProperty("numericColumn"); + } + + public void setRealColumn(Float realColumn) { + writeProperty("realColumn", realColumn); + } + public Float getRealColumn() { + return (Float)readProperty("realColumn"); + } + + public void setSmallintColumn(Short smallintColumn) { + writeProperty("smallintColumn", smallintColumn); + } + public Short getSmallintColumn() { + return (Short)readProperty("smallintColumn"); + } + + public void setTimeColumn(Date timeColumn) { + writeProperty("timeColumn", timeColumn); + } + public Date getTimeColumn() { + return (Date)readProperty("timeColumn"); + } + + public void setTimestampColumn(Date timestampColumn) { + writeProperty("timestampColumn", timestampColumn); + } + public Date getTimestampColumn() { + return (Date)readProperty("timestampColumn"); + } + + public void setTinyintColumn(Byte tinyintColumn) { + writeProperty("tinyintColumn", tinyintColumn); + } + public Byte getTinyintColumn() { + return (Byte)readProperty("tinyintColumn"); + } + + public void setVarcharColumn(String varcharColumn) { + writeProperty("varcharColumn", varcharColumn); + } + public String getVarcharColumn() { + return (String)readProperty("varcharColumn"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMap2.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMap2.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMap2.java new file mode 100644 index 0000000..ece568c --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMap2.java @@ -0,0 +1,60 @@ +package org.apache.cayenne.testdo.return_types.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _ReturnTypesMap2 was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _ReturnTypesMap2 extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String BINARY_COLUMN_PROPERTY = "binaryColumn"; + @Deprecated + public static final String BLOB_COLUMN_PROPERTY = "blobColumn"; + @Deprecated + public static final String LONGVARBINARY_COLUMN_PROPERTY = "longvarbinaryColumn"; + @Deprecated + public static final String VARBINARY_COLUMN_PROPERTY = "varbinaryColumn"; + + public static final String AAAID_PK_COLUMN = "AAAID"; + + public static final Property<byte[]> BINARY_COLUMN = new Property<byte[]>("binaryColumn"); + public static final Property<byte[]> BLOB_COLUMN = new Property<byte[]>("blobColumn"); + public static final Property<byte[]> LONGVARBINARY_COLUMN = new Property<byte[]>("longvarbinaryColumn"); + public static final Property<byte[]> VARBINARY_COLUMN = new Property<byte[]>("varbinaryColumn"); + + public void setBinaryColumn(byte[] binaryColumn) { + writeProperty("binaryColumn", binaryColumn); + } + public byte[] getBinaryColumn() { + return (byte[])readProperty("binaryColumn"); + } + + public void setBlobColumn(byte[] blobColumn) { + writeProperty("blobColumn", blobColumn); + } + public byte[] getBlobColumn() { + return (byte[])readProperty("blobColumn"); + } + + public void setLongvarbinaryColumn(byte[] longvarbinaryColumn) { + writeProperty("longvarbinaryColumn", longvarbinaryColumn); + } + public byte[] getLongvarbinaryColumn() { + return (byte[])readProperty("longvarbinaryColumn"); + } + + public void setVarbinaryColumn(byte[] varbinaryColumn) { + writeProperty("varbinaryColumn", varbinaryColumn); + } + public byte[] getVarbinaryColumn() { + return (byte[])readProperty("varbinaryColumn"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMapLobs1.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMapLobs1.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMapLobs1.java new file mode 100644 index 0000000..eb7b0da --- /dev/null +++ b/cayenne-server/src/test/java/org/apache/cayenne/testdo/return_types/auto/_ReturnTypesMapLobs1.java @@ -0,0 +1,30 @@ +package org.apache.cayenne.testdo.return_types.auto; + +import org.apache.cayenne.CayenneDataObject; +import org.apache.cayenne.exp.Property; + +/** + * Class _ReturnTypesMapLobs1 was generated by Cayenne. + * It is probably a good idea to avoid changing this class manually, + * since it may be overwritten next time code is regenerated. + * If you need to make any customizations, please use subclass. + */ +public abstract class _ReturnTypesMapLobs1 extends CayenneDataObject { + + private static final long serialVersionUID = 1L; + + @Deprecated + public static final String CLOB_COLUMN_PROPERTY = "clobColumn"; + + public static final String AAAID_PK_COLUMN = "AAAID"; + + public static final Property<String> CLOB_COLUMN = new Property<String>("clobColumn"); + + public void setClobColumn(String clobColumn) { + writeProperty("clobColumn", clobColumn); + } + public String getClobColumn() { + return (String)readProperty("clobColumn"); + } + +} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ArraysEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ArraysEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ArraysEntity.java deleted file mode 100644 index a815b4b..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ArraysEntity.java +++ /dev/null @@ -1,27 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._ArraysEntity; - -public class ArraysEntity extends _ArraysEntity { - - private static final long serialVersionUID = 1L; - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Bag.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Bag.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Bag.java deleted file mode 100644 index c916205..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Bag.java +++ /dev/null @@ -1,27 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._Bag; - -public class Bag extends _Bag { - - private static final long serialVersionUID = 1L; - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Ball.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Ball.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Ball.java deleted file mode 100644 index 0dac2a1..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Ball.java +++ /dev/null @@ -1,27 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._Ball; - -public class Ball extends _Ball { - - private static final long serialVersionUID = 1L; - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BigDecimalEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BigDecimalEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BigDecimalEntity.java deleted file mode 100644 index 97546ab..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BigDecimalEntity.java +++ /dev/null @@ -1,27 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._BigDecimalEntity; - -public class BigDecimalEntity extends _BigDecimalEntity { - - private static final long serialVersionUID = 1L; - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BigIntegerEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BigIntegerEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BigIntegerEntity.java deleted file mode 100644 index d519c22..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BigIntegerEntity.java +++ /dev/null @@ -1,27 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._BigIntegerEntity; - -public class BigIntegerEntity extends _BigIntegerEntity { - - private static final long serialVersionUID = 1L; - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BinaryPKTest1.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BinaryPKTest1.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BinaryPKTest1.java deleted file mode 100644 index 4466401..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BinaryPKTest1.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._BinaryPKTest1; - -public class BinaryPKTest1 extends _BinaryPKTest1 { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BinaryPKTest2.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BinaryPKTest2.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BinaryPKTest2.java deleted file mode 100644 index 0fd5e0c..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BinaryPKTest2.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._BinaryPKTest2; - -public class BinaryPKTest2 extends _BinaryPKTest2 { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BitNumberTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BitNumberTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BitNumberTestEntity.java deleted file mode 100644 index 6333707..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BitNumberTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._BitNumberTestEntity; - -public class BitNumberTestEntity extends _BitNumberTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BitTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BitTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BitTestEntity.java deleted file mode 100644 index 453105e..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BitTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._BitTestEntity; - -public class BitTestEntity extends _BitTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BlobTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BlobTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BlobTestEntity.java deleted file mode 100644 index 75cf2ed..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BlobTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._BlobTestEntity; - -public class BlobTestEntity extends _BlobTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BooleanTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BooleanTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BooleanTestEntity.java deleted file mode 100644 index e1e2992..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BooleanTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._BooleanTestEntity; - -public class BooleanTestEntity extends _BooleanTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Box.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Box.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Box.java deleted file mode 100644 index 8736f39..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Box.java +++ /dev/null @@ -1,25 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._Box; - -public class Box extends _Box { - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BoxInfo.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BoxInfo.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BoxInfo.java deleted file mode 100644 index c5457c8..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/BoxInfo.java +++ /dev/null @@ -1,25 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._BoxInfo; - -public class BoxInfo extends _BoxInfo { - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CalendarEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CalendarEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CalendarEntity.java deleted file mode 100644 index 29ffa81..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CalendarEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._CalendarEntity; - -public class CalendarEntity extends _CalendarEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharFkTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharFkTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharFkTestEntity.java deleted file mode 100644 index 950b098..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharFkTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._CharFkTestEntity; - -public class CharFkTestEntity extends _CharFkTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharPkTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharPkTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharPkTestEntity.java deleted file mode 100644 index 8985bee..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharPkTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._CharPkTestEntity; - -public class CharPkTestEntity extends _CharPkTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharacterEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharacterEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharacterEntity.java deleted file mode 100644 index 4c00b7d..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CharacterEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._CharacterEntity; - -public class CharacterEntity extends _CharacterEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ClobTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ClobTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ClobTestEntity.java deleted file mode 100644 index 5099fa4..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ClobTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._ClobTestEntity; - -public class ClobTestEntity extends _ClobTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ClobTestRelation.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ClobTestRelation.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ClobTestRelation.java deleted file mode 100644 index c79cfe0..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ClobTestRelation.java +++ /dev/null @@ -1,25 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._ClobTestRelation; - -public class ClobTestRelation extends _ClobTestRelation { - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CompoundFkTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CompoundFkTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CompoundFkTestEntity.java deleted file mode 100644 index e24e4bb..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CompoundFkTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._CompoundFkTestEntity; - -public class CompoundFkTestEntity extends _CompoundFkTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CompoundPkTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CompoundPkTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CompoundPkTestEntity.java deleted file mode 100644 index 14afeb5..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/CompoundPkTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._CompoundPkTestEntity; - -public class CompoundPkTestEntity extends _CompoundPkTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DateTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DateTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DateTestEntity.java deleted file mode 100644 index c93c38d..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DateTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._DateTestEntity; - -public class DateTestEntity extends _DateTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DecimalPKTest1.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DecimalPKTest1.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DecimalPKTest1.java deleted file mode 100644 index 901c239..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DecimalPKTest1.java +++ /dev/null @@ -1,26 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -public class DecimalPKTest1 extends org.apache.cayenne.testdo.testmap.auto._DecimalPKTest1 { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DecimalPKTestEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DecimalPKTestEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DecimalPKTestEntity.java deleted file mode 100644 index 12d3050..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/DecimalPKTestEntity.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._DecimalPKTestEntity; - -public class DecimalPKTestEntity extends _DecimalPKTestEntity { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Enum1.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Enum1.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Enum1.java deleted file mode 100644 index 6c24524..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/Enum1.java +++ /dev/null @@ -1,23 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -public enum Enum1 { - one, two, three -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/EnumEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/EnumEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/EnumEntity.java deleted file mode 100644 index 0573389..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/EnumEntity.java +++ /dev/null @@ -1,25 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._EnumEntity; - -public class EnumEntity extends _EnumEntity { - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ExtendedTypeEntity.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ExtendedTypeEntity.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ExtendedTypeEntity.java deleted file mode 100644 index 5c067f6..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/ExtendedTypeEntity.java +++ /dev/null @@ -1,25 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._ExtendedTypeEntity; - -public class ExtendedTypeEntity extends _ExtendedTypeEntity { - -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnCompKey.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnCompKey.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnCompKey.java deleted file mode 100644 index 03cc828..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnCompKey.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._GeneratedColumnCompKey; - -public class GeneratedColumnCompKey extends _GeneratedColumnCompKey { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnCompMaster.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnCompMaster.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnCompMaster.java deleted file mode 100644 index b5f5e7f..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnCompMaster.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._GeneratedColumnCompMaster; - -public class GeneratedColumnCompMaster extends _GeneratedColumnCompMaster { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnDep.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnDep.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnDep.java deleted file mode 100644 index 4b4f3cc..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnDep.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._GeneratedColumnDep; - -public class GeneratedColumnDep extends _GeneratedColumnDep { - -} - - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/535ecb88/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnTest2.java ---------------------------------------------------------------------- diff --git a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnTest2.java b/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnTest2.java deleted file mode 100644 index e8bb3cb..0000000 --- a/cayenne-server/src/test/java/org/apache/cayenne/testdo/testmap/GeneratedColumnTest2.java +++ /dev/null @@ -1,28 +0,0 @@ -/***************************************************************** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.cayenne.testdo.testmap; - -import org.apache.cayenne.testdo.testmap.auto._GeneratedColumnTest2; - -public class GeneratedColumnTest2 extends _GeneratedColumnTest2 { - -} - - -
