com.springml.salesforce.wave.model.chatter.Reference 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 Reference {
private String id;
private String url;
private Map additionalProperties = new HashMap();
/**
*
* @return
* The id
*/
public String getId() {
return id;
}
/**
*
* @param id
* The id
*/
public void setId(String id) {
this.id = id;
}
/**
*
* @return
* The url
*/
public String getUrl() {
return url;
}
/**
*
* @param url
* The url
*/
public void setUrl(String url) {
this.url = url;
}
@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);
}
}