All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.springml.salesforce.wave.model.chatter.Bookmarks Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy