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

io.syndesis.connector.kudu.model.KuduTable Maven / Gradle / Ivy

There is a newer version: 1.13.2
Show newest version
/*
 * Copyright (C) 2016 Red Hat, Inc.
 *
 * 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 io.syndesis.connector.kudu.model;

import java.util.List;

public class KuduTable {
    private String name;
    private Schema schema;
    private CreateTableOptions builder;


    /**
     * @return name of the table
     */
    public String getName() {
        return name;
    }

    /**
     * Specifies the name of the table
     *
     * @param name
     */
    public void setName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return String.format(name);
    }

    public CreateTableOptions getBuilder() {
        return builder;
    }

    public void setBuilder(CreateTableOptions builder) {
        this.builder = builder;
    }

    public Schema getSchema() {
        return schema;
    }

    public void setSchema(Schema schema) {
        this.schema = schema;
    }


    public static class Schema {
        private ColumnSchema[] columns;

        public ColumnSchema[] getColumns() {
            return columns.clone();
        }

        public void setColumns(ColumnSchema[] columns, boolean set) {
            if (set) {
                this.columns = columns.clone();
            }
        }
    }

    public static class CreateTableOptions {
        private List rangeKeys;

        public List getRangeKeys() {
            return rangeKeys;
        }

        public void setRangeKeys(List rangeKeys) {
            this.rangeKeys = rangeKeys;
        }
    }

    public static class ColumnSchema {
        private String name;
        private String type;
        private boolean key;

        public ColumnSchema(String name, String type, boolean key) {
            this.name = name;
            this.type = type;
            this.key = key;
        }

        public boolean isKey() {
            return key;
        }

        public void setKey(boolean key) {
            this.key = key;
        }

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }

        public String getType() {
            return type;
        }

        public void setType(String type) {
            this.type = type;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy