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

nl.tno.bim.mapping.services.CommonWordService Maven / Gradle / Ivy

package nl.tno.bim.mapping.services;

import java.util.List;

import org.springframework.stereotype.Service;

import nl.tno.bim.mapping.domain.CommonWord;

@Service
public interface CommonWordService {
    CommonWord retrieveCommonWordById(Long id);

    List persistCommonWords(List commonWords);

    List findCommonWord(String word);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy