com.cribbstechnologies.clients.mandrill.model.BaseMandrillRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mandrillClient Show documentation
Show all versions of mandrillClient Show documentation
A Java wrapper for Mandrill
package com.cribbstechnologies.clients.mandrill.model;
public class BaseMandrillRequest {
private String key;
public String getKey() {
return key;
}
/**
* It's not necessary to set this field manually as the MandrillRESTRequest pulls the property from the configuration and
* populates this object with it on every request
*
* @param key
*/
public void setKey(String key) {
this.key = key;
}
}