forked from kbss-cvut/termit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Enhancement kbss-cvut/termit-ui#520] Update vocabulary content histo…
…ry detailed endpoint allowing result filtering.
- Loading branch information
Showing
5 changed files
with
137 additions
and
25 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
src/main/java/cz/cvut/kbss/termit/dto/filter/VocabularyContentChangeFilterDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package cz.cvut.kbss.termit.dto.filter; | ||
|
||
import java.net.URI; | ||
|
||
/** | ||
* Represents parameters for filtering vocabulary content changes. | ||
*/ | ||
public class VocabularyContentChangeFilterDto { | ||
private String termName; | ||
private String changedAttributeName; | ||
private String authorName; | ||
private URI changeType; | ||
|
||
public String getTermName() { | ||
return termName; | ||
} | ||
|
||
public void setTermName(String termName) { | ||
this.termName = termName; | ||
} | ||
|
||
public String getChangedAttributeName() { | ||
return changedAttributeName; | ||
} | ||
|
||
public void setChangedAttributeName(String changedAttributeName) { | ||
this.changedAttributeName = changedAttributeName; | ||
} | ||
|
||
public String getAuthorName() { | ||
return authorName; | ||
} | ||
|
||
public void setAuthorName(String authorName) { | ||
this.authorName = authorName; | ||
} | ||
|
||
public URI getChangeType() { | ||
return changeType; | ||
} | ||
|
||
public void setChangeType(URI changeType) { | ||
this.changeType = changeType; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters