All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javersion.store.jdbc.JVersionParent Maven / Gradle / Ivy

/*
 * 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.SimplePath;
import com.querydsl.sql.ColumnMetadata;
import com.querydsl.sql.RelationalPathBase;

public class JVersionParent extends RelationalPathBase {

    public final SimplePath parentRevision = createSimple("parentRevision", org.javersion.core.Revision.class);

    public final SimplePath revision = createSimple("revision", org.javersion.core.Revision.class);

    public JVersionParent(RelationalPathBase table) {
        super(JVersionParent.class, table.getMetadata(), table.getSchemaName(), table.getTableName());
        table.getColumns().forEach(path -> addMetadata(path, table.getMetadata(path)));
    }

    public JVersionParent(String repositoryName) {
        this("PUBLIC", repositoryName + "_VERSION_PARENT");
    }

    public JVersionParent(String schema, String table) {
        super(JVersionParent.class, PathMetadataFactory.forVariable(table), schema, table);
        addMetadata();
    }

    protected void addMetadata() {
        addMetadata(parentRevision, ColumnMetadata.named("PARENT_REVISION").withIndex(2).ofType(Types.VARCHAR).withSize(32).notNull());
        addMetadata(revision, ColumnMetadata.named("REVISION").withIndex(1).ofType(Types.VARCHAR).withSize(32).notNull());
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy