-
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.
[Jenkins] merging 'release/0.9' into 'master'
- Loading branch information
Showing
6 changed files
with
175 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Guidelines for Pull Requests | ||
|
||
If you haven't yet read our code review guidelines, please do so, You can find them [here](https://diging.atlassian.net/wiki/spaces/DIGING/pages/2256076801/Code+Review+Guidelines). | ||
|
||
Please confirm the following by adding an x for each item (turn `[ ]` into `[x]`). | ||
|
||
- [ ] I have removed all code style changes that are not necessary (e.g. changing blanks across the whole file that don’t need to be changed, adding empty lines in parts other than your own code) | ||
- [ ] I am not making any changes to files that don’t have any effect (e.g. imports added that don’t need to be added) | ||
- [ ] I do not have any sysout statements in my code or commented out code that isn’t needed anymore | ||
- [ ] I am not reformatting any files in the wrong format or without cause. | ||
- [ ] I am not changing file encoding or line endings to something else than UTF-8, LF | ||
- [ ] My pull request does not show an insane amount of files being changed although my ticket only requires a few files being changed | ||
- [ ] I have added Javadoc/documentation where appropriate | ||
- [ ] I have added test cases where appropriate | ||
- [ ] I have explained any part of my code/implementation decisions that is not be self-explanatory | ||
|
||
## Please provide a brief description of your ticket | ||
(you can copy the ticket if it hasn't changed) | ||
|
||
...Put description here... | ||
|
||
## Anything else the reviewer needs to know? | ||
|
||
... describe here ... |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,8 +42,7 @@ public String getMessage() { | |
} | ||
public void setMessage(String message) { | ||
this.message = message; | ||
} | ||
|
||
} | ||
} | ||
|
||
} |
44 changes: 44 additions & 0 deletions
44
...zotero/src/main/java/org/springframework/social/zotero/api/ZoteroUpdateItemsStatuses.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,44 @@ | ||
package org.springframework.social.zotero.api; | ||
|
||
import java.util.List; | ||
|
||
import org.springframework.social.zotero.api.ItemCreationResponse.FailedMessage; | ||
|
||
public class ZoteroUpdateItemsStatuses { | ||
private List<String> successItems; | ||
private List<String> failedItems; | ||
private List<String> unchagedItems; | ||
private List<FailedMessage> failedMessages; | ||
|
||
public void setSuccessItems(List<String> successItems) { | ||
this.successItems = successItems; | ||
} | ||
|
||
public List<String> getSuccessItems() { | ||
return successItems; | ||
} | ||
|
||
public void setFailedItems(List<String> failedItems) { | ||
this.failedItems = failedItems; | ||
} | ||
|
||
public List<String> getFailedItems() { | ||
return failedItems; | ||
} | ||
|
||
public void setUnchangedItems(List<String> unchagedItems) { | ||
this.unchagedItems = unchagedItems; | ||
} | ||
|
||
public List<String> getUnchangedItems() { | ||
return unchagedItems; | ||
} | ||
|
||
public List<FailedMessage> getFailedMessages(){ | ||
return failedMessages; | ||
} | ||
|
||
public void setFailedMessages(List<FailedMessage> failedMessages) { | ||
this.failedMessages = failedMessages; | ||
} | ||
} |
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