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

com.eurodyn.qlack.fuse.lexicon.repository.ApplicationRepository Maven / Gradle / Ivy

The newest version!
package com.eurodyn.qlack.fuse.lexicon.repository;

import com.eurodyn.qlack.common.repository.QlackBaseRepository;
import com.eurodyn.qlack.fuse.lexicon.model.Application;
import java.util.List;
import org.springframework.stereotype.Repository;

/**
 * An interface Repository provides abstract methods for crud operations
 *
 * @author European Dynamics SA
 */
@Repository
public interface ApplicationRepository extends
  QlackBaseRepository {

  /**
   * An abstract declaration method that is used to retrieve the symbolic
   * name
   *
   * @param symbolicName the symbolic name
   * @return the symbolic name according to its name
   */
  List findBySymbolicName(String symbolicName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy