/* * Copyright 2015 Samppa Saarela * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.javersion.store.jdbc; import java.sql.Types; import org.javersion.core.Revision; import com.querydsl.core.types.PathMetadataFactory; import com.querydsl.core.types.dsl.EnumPath; import com.querydsl.core.types.dsl.NumberPath; import com.querydsl.core.types.dsl.SimplePath; import com.querydsl.core.types.dsl.StringPath; import com.querydsl.sql.ColumnMetadata; import com.querydsl.sql.RelationalPathBase; public class JVersionProperty extends RelationalPathBase<JVersionProperty> { public final SimplePath<Revision> revision = createSimple("revision", org.javersion.core.Revision.class); public final EnumPath<VersionStatus> status = createEnum("status", VersionStatus.class); public final NumberPath<Long> nbr = createNumber("nbr", Long.class); public final StringPath path = createString("path"); public final StringPath str = createString("str"); public final StringPath type = createString("type"); public JVersionProperty(RelationalPathBase<?> table) { super(JVersionProperty.class, table.getMetadata(), table.getSchemaName(), table.getTableName()); table.getColumns().forEach(path -> addMetadata(path, table.getMetadata(path))); } public JVersionProperty(String repositoryName) { this("PUBLIC", repositoryName + "_VERSION_PROPERTY"); } public JVersionProperty(String schema, String table) { super(JVersionProperty.class, PathMetadataFactory.forVariable(table), schema, table); addMetadata(revision, ColumnMetadata.named("REVISION").withIndex(1).ofType(Types.VARCHAR).withSize(32).notNull()); addMetadata(status, ColumnMetadata.named("STATUS").withIndex(2).ofType(Types.INTEGER).withSize(1).notNull()); addMetadata(path, ColumnMetadata.named("PATH").withIndex(3).ofType(Types.VARCHAR).notNull()); addMetadata(type, ColumnMetadata.named("TYPE").withIndex(4).ofType(Types.CHAR).withSize(1).notNull()); addMetadata(str, ColumnMetadata.named("STR").withIndex(5).ofType(Types.VARCHAR)); addMetadata(nbr, ColumnMetadata.named("NBR").withIndex(6).ofType(Types.BIGINT).withSize(19)); } }