alsutton/enterprisepasswordsafe

View on GitHub
src/main/java/com/enterprisepasswordsafe/database/schema/AuthenticationSourcesTable.java

Summary

Maintainability
A
0 mins
Test Coverage
A
91%
/*
 * Copyright (c) 2017 Carbon Security Ltd. <opensource@carbonsecurity.co.uk>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

package com.enterprisepasswordsafe.database.schema;

public final class AuthenticationSourcesTable
    extends AbstractTable{
    /**
     * The name of this table
     */

    private static final String TABLE_NAME = "auth_sources";

    /**
     * Column information
     */

    private static final ColumnSpecification ID_COLUMN = new ColumnSpecification("source_id", ColumnSpecification.TYPE_ID);
    private static final ColumnSpecification NAME_COLUMN = new ColumnSpecification("param_name", ColumnSpecification.TYPE_SHORT_STRING);
    private static final ColumnSpecification VALUE_COLUMN = new ColumnSpecification("param_value", ColumnSpecification.TYPE_LONG_STRING);


    private static final ColumnSpecification[] COLUMNS = {
        ID_COLUMN, NAME_COLUMN, VALUE_COLUMN
    };

    /**
     * Index information
     */

    private static final IndexSpecification ID_INDEX = new IndexSpecification("as_sid", TABLE_NAME, ID_COLUMN);

    private static final IndexSpecification[] INDEXES = {
        ID_INDEX
    };

    /**
     * Get the name of this table
     */

    @Override
    public String getTableName() {
        return TABLE_NAME;
    }

    /**
     * Get all of the columns in the table
     */

    @Override
    ColumnSpecification[] getAllColumns() {
        return COLUMNS;
    }

    /**
     * Get all of the indexes in the table
     */

    @Override
    IndexSpecification[] getAllIndexes() {
        return INDEXES;
    }

    /**
     * Update the current schema to the latest version
     */

    @Override
    public void updateSchema(final long schemaID) {
        // Nothing to do.
    }

    /**
     * Gets an instance of this table schema
     */

    protected static AuthenticationSourcesTable getInstance() {
        return new AuthenticationSourcesTable();
    }
}