Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Key

Description

Possible Values

Default

Required (Yes/No)

consumerKey

Consumer key for authentication.

Text

empty

Yes

consumerSecretConsumer secret for authentication.TextemptyYes
accessToken*Access token of authenticated userTextemptyYes
accessTokenSecret*Access token secret of authenticated userTextemptyYes
commandLineAuthenticationSwitch to turn on a command line authentication with mendeley. This should only be used in development environments. The access token and its secret should be empty in this case.true/falsefalseNo
addContactsIf set to true, all contacts of the account owner will be added to the data set.true/falsefalseNo
addPrivateGroupsIf set to true, private groups will be added to the data set. The set can be restricted by the property restrictPrivateGroupsTotrue/falsefalseNo
restrictPrivateGroupsToRestricts the set of private groups to the ones specified by their name. More group names can be separated by a comma (,).Groupname1, Groupname 2, ...noneNo
addGroupDocumentsIf set to true, the documents inside the private groups will be added to the data set.true/falsefalseNo
createAuthorPersonsIf set to true, persons will be created for all authors contributed in the group documents.true/falsetrueNo
createEditorPersonsIf set to true, persons will be created for the editors of the group documents.true/falsetrueNo
attachFilesIf this property is set to true files will be attached to documents if available.true/falsefalseNo

addAuthoredPublications

 If this property is set to true all authored publication of the account owner will be added.

true/falsefalseNo

Example:

Code Block
<sources bundleId="org.sociotech.communitymashup.source.MendeleySourceService name="Publications">
  <configuration>
     <properties Key="consumerKey" Value="-"/>
     <properties Key="consumerSecret" Value="-"/>
     <properties Key="accessToken" Value="-"/>
     <properties Key="accessTokenSecret" Value="-"/>
     <properties Key="addContacts" Value="true"/>
     <properties Key="addPrivateGroups" Value="true"/>
     <properties Key="restrictPrivateGroupsTo" Value="CSCM"/>
     <properties Key="addGroupDocuments" Value="true"/>
     <properties Key="createEditorPersons" Value="false" />
  </configuration>
</sources>

...