com.springml.salesforce.wave.model.chatter.Bookmarks Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of salesforce-wave-api Show documentation
Show all versions of salesforce-wave-api Show documentation
Java client for Salesforce Wave API
package com.springml.salesforce.wave.model.chatter;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang3.builder.ToStringBuilder;
public class Bookmarks {
private boolean isBookmarkedByCurrentUser;
private Map additionalProperties = new HashMap();
/**
*
* @return
* The isBookmarkedByCurrentUser
*/
public boolean isIsBookmarkedByCurrentUser() {
return isBookmarkedByCurrentUser;
}
/**
*
* @param isBookmarkedByCurrentUser
* The isBookmarkedByCurrentUser
*/
public void setIsBookmarkedByCurrentUser(boolean isBookmarkedByCurrentUser) {
this.isBookmarkedByCurrentUser = isBookmarkedByCurrentUser;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
public Map getAdditionalProperties() {
return this.additionalProperties;
}
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}