This commit is contained in:
Timo Westkämper 2012-02-19 23:47:06 +02:00
parent ef4c03dc9b
commit 704c9745b7
4 changed files with 0 additions and 217 deletions

View File

@ -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<SCatalogPrice> {
private static final long serialVersionUID = -1748773767;
public static final SCatalogPrice catalogPrice = new SCatalogPrice("CATALOG_PRICE");
public final NumberPath<Integer> catalogId = createNumber("CATALOG_ID", Integer.class);
public final NumberPath<Long> pricesId = createNumber("PRICES_ID", Long.class);
public final PrimaryKey<SCatalogPrice> sql100819184431880 = createPrimaryKey(catalogId, pricesId);
public final ForeignKey<SPrice> fke4eb7d639d62434f = new ForeignKey<SPrice>(this, pricesId, "ID");
public final ForeignKey<SCatalog> fke4eb7d63f28fe670 = new ForeignKey<SCatalog>(this, catalogId, "ID");
public SCatalogPrice(String variable) {
super(SCatalogPrice.class, forVariable(variable), null, "CATALOG_PRICE");
}
public SCatalogPrice(BeanPath<? extends SCatalogPrice> entity) {
super(entity.getType(), entity.getMetadata(), null, "CATALOG_PRICE");
}
public SCatalogPrice(PathMetadata<?> metadata) {
super(SCatalogPrice.class, metadata, null, "CATALOG_PRICE");
}
}

View File

@ -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<SItemStatuschange> {
private static final long serialVersionUID = 675000350;
public static final SItemStatuschange itemStatuschange = new SItemStatuschange("ITEM_STATUSCHANGE");
public final NumberPath<Long> itemId = createNumber("ITEM_ID", Long.class);
public final NumberPath<Long> statuschangesId = createNumber("STATUSCHANGES_ID", Long.class);
public final ForeignKey<SItem> fkc2c9ebee9e7e0323 = new ForeignKey<SItem>(this, itemId, "ID");
public final ForeignKey<SStatuschange> fkc2c9ebee2f721e35 = new ForeignKey<SStatuschange>(this, statuschangesId, "ID");
public SItemStatuschange(String variable) {
super(SItemStatuschange.class, forVariable(variable), null, "ITEM_STATUSCHANGE");
}
public SItemStatuschange(BeanPath<? extends SItemStatuschange> entity) {
super(entity.getType(), entity.getMetadata(), null, "ITEM_STATUSCHANGE");
}
public SItemStatuschange(PathMetadata<?> metadata) {
super(SItemStatuschange.class, metadata, null, "ITEM_STATUSCHANGE");
}
}

View File

@ -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<SKittensArray> {
public final NumberPath<Integer> animalId = createNumber("ANIMAL_ID", Integer.class);
public final NumberPath<Integer> arrayindex = createNumber("ARRAYINDEX", Integer.class);
public final NumberPath<Integer> kittensarrayId = createNumber("KITTENSARRAY_ID", Integer.class);
public SKittensArray(String variable) {
super(SKittensArray.class, forVariable(variable), null, "KITTENS_ARRAY");
}
public SKittensArray(BeanPath<? extends SKittensArray> entity) {
super(entity.getType(),entity.getMetadata(), null, "KITTENS_ARRAY");
}
public SKittensArray(PathMetadata<?> metadata) {
super(SKittensArray.class, metadata, null, "KITTENS_ARRAY");
}
}

View File

@ -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<SStoreCustomer> implements RelationalPath<SStoreCustomer> {
private static final long serialVersionUID = 1667012918;
public static final SStoreCustomer storeCustomer = new SStoreCustomer("STORE_CUSTOMER");
public final NumberPath<Integer> customersId = createNumber("CUSTOMERS_ID", Integer.class);
public final NumberPath<Long> storeId = createNumber("STORE_ID", Long.class);
public final ForeignKey<SStore> fk808055bc828daef0 = new ForeignKey<SStore>(this, storeId, "ID");
public final ForeignKey<SCustomer> fk808055bcf27d6c8d = new ForeignKey<SCustomer>(this, customersId, "ID");
public SStoreCustomer(String variable) {
super(SStoreCustomer.class, forVariable(variable), null, "STORE_CUSTOMER");
}
public SStoreCustomer(BeanPath<? extends SStoreCustomer> entity) {
super(entity.getType(), entity.getMetadata(), null, "STORE_CUSTOMER");
}
public SStoreCustomer(PathMetadata<?> metadata) {
super(SStoreCustomer.class, metadata, null, "STORE_CUSTOMER");
}
}