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

io.convergence_platform.common.database.blueprints.TableIndexBlueprint Maven / Gradle / Ivy

Go to download

Holds the common functionality needed by all Convergence Platform-based services written in Java.

The newest version!
package io.convergence_platform.common.database.blueprints;

import java.util.List;

public class TableIndexBlueprint {
    // Possible values:
    //   1. BTREE
    //   2. HASH
    public String type;

    public List columns = null;

    public TableIndexBlueprint(String type, List columns) {
        this.type = type;
        this.columns = columns;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy