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

com.yahoo.elide.datastores.aggregation.annotation.TableSource Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2019, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */
package com.yahoo.elide.datastores.aggregation.annotation;

import static com.yahoo.elide.datastores.aggregation.dynamic.NamespacePackage.DEFAULT;

/**
 * The definition of TableSource.
 */
public @interface TableSource {
    String table();
    String namespace() default DEFAULT;
    String column();
    String [] suggestionColumns() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy