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

io.corbel.resources.service.RelationSchemaService Maven / Gradle / Ivy

package io.corbel.resources.service;

import java.util.Set;

import org.springframework.cache.annotation.Cacheable;

/**
 * @author Rubén Carrasco
 * 
 */
public interface RelationSchemaService {

    String RELATION_FIELDS_CACHE = "relationFieldsCache";
    String TYPE_RELATIONS_CACHE = "typeRelationsCache";

    @Cacheable(TYPE_RELATIONS_CACHE)
    Set getTypeRelations(String type);

    @Cacheable(RELATION_FIELDS_CACHE)
    Set getRelationFields(String type, String relation);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy