-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/wcmc-its/ReCiter-Article-…
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
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
27 changes: 27 additions & 0 deletions
27
src/main/java/reciter/engine/analysis/evidence/FeedbackEvidence.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,27 @@ | ||
package reciter.engine.analysis.evidence; | ||
|
||
import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBDocument; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
|
||
import lombok.Data; | ||
import lombok.ToString; | ||
|
||
@Data | ||
@JsonInclude(JsonInclude.Include.NON_EMPTY) | ||
@ToString | ||
@DynamoDBDocument | ||
public class FeedbackEvidence { | ||
|
||
private Double feedbackScoreCites; | ||
private Double feedbackScoreCoAuthorName; | ||
private Double feedbackScoreEmail; | ||
private Double feedbackScoreInstitution; | ||
private Double feedbackScoreJournal; | ||
private Double feedbackScoreJournalSubField; | ||
private Double feedbackScoreKeyword; | ||
private Double feedbackScoreOrcid; | ||
private Double feedbackScoreOrcidCoAuthor; | ||
private Double feedbackScoreOrganization; | ||
private Double feedbackScoreTargetAuthorName; | ||
private Double feedbackScoreYear; | ||
} |
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