diff --git a/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SCatalogPrice.java b/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SCatalogPrice.java deleted file mode 100644 index 937ca1511..000000000 --- a/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SCatalogPrice.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Copyright 2011, Mysema Ltd - * - * 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 com.mysema.query.jpa.domain.sql; - -import static com.mysema.query.types.PathMetadataFactory.forVariable; - -import com.mysema.query.sql.ForeignKey; -import com.mysema.query.sql.PrimaryKey; -import com.mysema.query.sql.RelationalPathBase; -import com.mysema.query.types.PathMetadata; -import com.mysema.query.types.path.BeanPath; -import com.mysema.query.types.path.NumberPath; - - -/** - * SCatalogPrice is a Querydsl query type for SCatalogPrice - */ -public class SCatalogPrice extends RelationalPathBase { - - private static final long serialVersionUID = -1748773767; - - public static final SCatalogPrice catalogPrice = new SCatalogPrice("CATALOG_PRICE"); - - public final NumberPath catalogId = createNumber("CATALOG_ID", Integer.class); - - public final NumberPath pricesId = createNumber("PRICES_ID", Long.class); - - public final PrimaryKey sql100819184431880 = createPrimaryKey(catalogId, pricesId); - - public final ForeignKey fke4eb7d639d62434f = new ForeignKey(this, pricesId, "ID"); - - public final ForeignKey fke4eb7d63f28fe670 = new ForeignKey(this, catalogId, "ID"); - - public SCatalogPrice(String variable) { - super(SCatalogPrice.class, forVariable(variable), null, "CATALOG_PRICE"); - } - - public SCatalogPrice(BeanPath entity) { - super(entity.getType(), entity.getMetadata(), null, "CATALOG_PRICE"); - } - - public SCatalogPrice(PathMetadata metadata) { - super(SCatalogPrice.class, metadata, null, "CATALOG_PRICE"); - } - -} - diff --git a/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SItemStatuschange.java b/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SItemStatuschange.java deleted file mode 100644 index 9af016876..000000000 --- a/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SItemStatuschange.java +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright 2011, Mysema Ltd - * - * 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 com.mysema.query.jpa.domain.sql; - -import static com.mysema.query.types.PathMetadataFactory.forVariable; - -import com.mysema.query.sql.ForeignKey; -import com.mysema.query.sql.RelationalPathBase; -import com.mysema.query.types.PathMetadata; -import com.mysema.query.types.path.BeanPath; -import com.mysema.query.types.path.NumberPath; - - -/** - * SItemStatuschange is a Querydsl query type for SItemStatuschange - */ -public class SItemStatuschange extends RelationalPathBase { - - private static final long serialVersionUID = 675000350; - - public static final SItemStatuschange itemStatuschange = new SItemStatuschange("ITEM_STATUSCHANGE"); - - public final NumberPath itemId = createNumber("ITEM_ID", Long.class); - - public final NumberPath statuschangesId = createNumber("STATUSCHANGES_ID", Long.class); - - public final ForeignKey fkc2c9ebee9e7e0323 = new ForeignKey(this, itemId, "ID"); - - public final ForeignKey fkc2c9ebee2f721e35 = new ForeignKey(this, statuschangesId, "ID"); - - public SItemStatuschange(String variable) { - super(SItemStatuschange.class, forVariable(variable), null, "ITEM_STATUSCHANGE"); - } - - public SItemStatuschange(BeanPath entity) { - super(entity.getType(), entity.getMetadata(), null, "ITEM_STATUSCHANGE"); - } - - public SItemStatuschange(PathMetadata metadata) { - super(SItemStatuschange.class, metadata, null, "ITEM_STATUSCHANGE"); - } - -} - diff --git a/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SKittensArray.java b/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SKittensArray.java deleted file mode 100644 index dceb49bbc..000000000 --- a/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SKittensArray.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright 2011, Mysema Ltd - * - * 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 com.mysema.query.jpa.domain.sql; - -import static com.mysema.query.types.PathMetadataFactory.forVariable; - -import com.mysema.query.sql.RelationalPathBase; -import com.mysema.query.types.PathMetadata; -import com.mysema.query.types.path.BeanPath; -import com.mysema.query.types.path.NumberPath; - -/** - * SKittensArray is a Querydsl query type for SKittensArray - */ -@SuppressWarnings("serial") -public class SKittensArray extends RelationalPathBase { - - public final NumberPath animalId = createNumber("ANIMAL_ID", Integer.class); - - public final NumberPath arrayindex = createNumber("ARRAYINDEX", Integer.class); - - public final NumberPath kittensarrayId = createNumber("KITTENSARRAY_ID", Integer.class); - - public SKittensArray(String variable) { - super(SKittensArray.class, forVariable(variable), null, "KITTENS_ARRAY"); - } - - public SKittensArray(BeanPath entity) { - super(entity.getType(),entity.getMetadata(), null, "KITTENS_ARRAY"); - } - - public SKittensArray(PathMetadata metadata) { - super(SKittensArray.class, metadata, null, "KITTENS_ARRAY"); - } - -} - diff --git a/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SStoreCustomer.java b/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SStoreCustomer.java deleted file mode 100644 index cf3421a33..000000000 --- a/querydsl-jpa/src/test/java/com/mysema/query/jpa/domain/sql/SStoreCustomer.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright 2011, Mysema Ltd - * - * 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 com.mysema.query.jpa.domain.sql; - -import static com.mysema.query.types.PathMetadataFactory.forVariable; - -import com.mysema.query.sql.ForeignKey; -import com.mysema.query.sql.RelationalPath; -import com.mysema.query.sql.RelationalPathBase; -import com.mysema.query.types.PathMetadata; -import com.mysema.query.types.path.BeanPath; -import com.mysema.query.types.path.NumberPath; - - -/** - * SStoreCustomer is a Querydsl query type for SStoreCustomer - */ -public class SStoreCustomer extends RelationalPathBase implements RelationalPath { - - private static final long serialVersionUID = 1667012918; - - public static final SStoreCustomer storeCustomer = new SStoreCustomer("STORE_CUSTOMER"); - - public final NumberPath customersId = createNumber("CUSTOMERS_ID", Integer.class); - - public final NumberPath storeId = createNumber("STORE_ID", Long.class); - - public final ForeignKey fk808055bc828daef0 = new ForeignKey(this, storeId, "ID"); - - public final ForeignKey fk808055bcf27d6c8d = new ForeignKey(this, customersId, "ID"); - - public SStoreCustomer(String variable) { - super(SStoreCustomer.class, forVariable(variable), null, "STORE_CUSTOMER"); - } - - public SStoreCustomer(BeanPath entity) { - super(entity.getType(), entity.getMetadata(), null, "STORE_CUSTOMER"); - } - - public SStoreCustomer(PathMetadata metadata) { - super(SStoreCustomer.class, metadata, null, "STORE_CUSTOMER"); - } - -} -