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

com.ocadotechnology.fileaccess.DataSourceDefinition Maven / Gradle / Ivy

There is a newer version: 16.6.21
Show newest version
/*
 * Copyright © 2017-2023 Ocado (Ocava)
 *
 * 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 com.ocadotechnology.fileaccess;

public class DataSourceDefinition > {
    /**
     * Config key indicating the mode which should be used to find the file.
     */
    public final E mode;
    /**
     * Config key indicating the local file path, either absolute or relative to a root data directory.
     */
    public final E localFile;
    /**
     * Config key indicating an optional S3 bucket override.
     */
    public final E bucket;
    /**
     * Config key indicating the s3 key of the desired file.
     */
    public final E key;

    public DataSourceDefinition(E mode, E localFile, E bucket, E key) {
        this.mode = mode;
        this.localFile = localFile;
        this.bucket = bucket;
        this.key = key;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy