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

com.buschmais.jqassistant.plugin.rdbms.api.model.SchemaDescriptor Maven / Gradle / Ivy

package com.buschmais.jqassistant.plugin.rdbms.api.model;

import java.util.List;

import com.buschmais.jqassistant.plugin.common.api.model.NamedDescriptor;
import com.buschmais.xo.neo4j.api.annotation.Label;
import com.buschmais.xo.neo4j.api.annotation.Relation;

@Label("Schema")
public interface SchemaDescriptor extends RdbmsDescriptor, NamedDescriptor {

    @Relation("HAS_TABLE")
    List getTables();

    @Relation("HAS_VIEW")
    List getViews();

    @Relation("HAS_SEQUENCE")
    List getSequences();

    @Relation("HAS_FUNCTION")
    List getFunctions();

    @Relation("HAS_PROCEDURE")
    List getProcedures();

    @Relation("HAS_UNKNOWN_ROUTINE")
    List getUnknownRoutines();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy