Toggle navigation
Toggle navigation
This project
Loading...
Sign in
grogv3
/
grog-cubi
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jean-Francois Leveque
2017-03-01 14:21:17 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
af42e97f3bab9b74d7ee599dad1007e18f42feb2
af42e97f
1 parent
9af15b4e
Keep as interface
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/org/legrog/entities/PublisherSearchRepository.java
src/main/java/org/legrog/entities/PublisherSearchRepository.java
View file @
af42e97
...
...
@@ -12,7 +12,7 @@ public interface PublisherSearchRepository {
* @param indexedPublisher IndexedPublisher to be indexed
* @return IndexedPublisher
*/
public
IndexedPublisher
save
(
IndexedPublisher
indexedPublisher
)
throws
IndexingException
;
IndexedPublisher
save
(
IndexedPublisher
indexedPublisher
)
throws
IndexingException
;
/**
* Searches for IndexedPublishers
...
...
@@ -20,5 +20,5 @@ public interface PublisherSearchRepository {
* @param string String looked for in IndexedPublishers
* @return list of matching IndexedPublishers
*/
public
List
<
IndexedPublisher
>
search
(
String
string
)
throws
SearchingException
;
List
<
IndexedPublisher
>
search
(
String
string
)
throws
SearchingException
;
}
...
...
Please
register
or
login
to post a comment