Skip to content
This repository has been archived by the owner on Jul 29, 2021. It is now read-only.

Commit

Permalink
feat(settings): move constants.json config to database
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasGeraud committed May 4, 2018
1 parent cee65c3 commit b8f52fe
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -15,11 +15,16 @@
*/
package io.gravitee.repository.management.api;

import io.gravitee.repository.exceptions.TechnicalException;
import io.gravitee.repository.management.model.Parameter;

import java.util.List;

/**
* @author Azize ELAMRANI (azize.elamrani at graviteesource.com)
* @author Nicolas GERAUD (nicolas.geraud at graviteesource.com)
* @author GraviteeSource Team
*/
public interface ParameterRepository extends CrudRepository<Parameter, String>{
List<Parameter> findAll(List<String> keys) throws TechnicalException;
}

0 comments on commit b8f52fe

Please sign in to comment.