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

com.mailersend.sdk.templates.Templates Maven / Gradle / Ivy

/*************************************************
 * MailerSend Java SDK
 * https://github.com/mailersend/mailersend-java
 * 
 * @author MailerSend 
 * https://mailersend.com
 **************************************************/
package com.mailersend.sdk.templates;

import java.util.ArrayList;

import com.mailersend.sdk.MailerSend;
import com.mailersend.sdk.MailerSendApi;
import com.mailersend.sdk.MailerSendResponse;
import com.mailersend.sdk.exceptions.MailerSendException;

/**
 * 

Templates class.

* * @author mailersend * @version $Id: $Id */ public class Templates { private MailerSend apiObjectReference; private int pageFilter = 1; private int limitFilter = 25; private String domainIdFilter = null; /** * Do not initialize directly. This should only be accessed from MailerSend.analytics * * @param ref a {@link com.mailersend.sdk.MailerSend} object. */ public Templates(MailerSend ref) { apiObjectReference = ref; } /** * Set the page of the request * * @param page a int. * @return a {@link com.mailersend.sdk.templates.Templates} object. */ public Templates page(int page) { pageFilter = page; return this; } /** * Set the results limit (10 - 100) * * @param limit a int. * @return a {@link com.mailersend.sdk.templates.Templates} object. */ public Templates limit(int limit) { limitFilter = limit; return this; } /** * Set the domain ID * * @param domainId a {@link java.lang.String} object. * @return a {@link com.mailersend.sdk.templates.Templates} object. */ public Templates domainId(String domainId) { domainIdFilter = domainId; return this; } /** * Get templates * * @throws com.mailersend.sdk.exceptions.MailerSendException * @return a {@link com.mailersend.sdk.templates.TemplatesList} object. */ public TemplatesList getTemplates() throws MailerSendException { String endpoint = "/templates".concat(prepareParamsUrl()); MailerSendApi api = new MailerSendApi(); api.setToken(apiObjectReference.getToken()); TemplatesList response = api.getRequest(endpoint, TemplatesList.class); response.postDeserialize(); return response; } /** * Retrieve the template with the given id * * @param templateId a {@link java.lang.String} object. * @throws com.mailersend.sdk.exceptions.MailerSendException * @return a {@link com.mailersend.sdk.templates.Template} object. */ public Template getTemplate(String templateId) throws MailerSendException { String endpoint = "/templates/".concat(templateId); MailerSendApi api = new MailerSendApi(); api.setToken(apiObjectReference.getToken()); TemplateResponse response = api.getRequest(endpoint, TemplateResponse.class); if (response.template != null) { response.template.postDeserialize(); } return response.template; } /** * Delete the template with the given id * * @param templateId a {@link java.lang.String} object. * @throws com.mailersend.sdk.exceptions.MailerSendException * @return a {@link com.mailersend.sdk.MailerSendResponse} object. */ public MailerSendResponse deleteTemplate(String templateId) throws MailerSendException { String endpoint = "/templates/".concat(templateId); MailerSendApi api = new MailerSendApi(); api.setToken(apiObjectReference.getToken()); MailerSendResponse response = api.deleteRequest(endpoint, MailerSendResponse.class); return response; } /** * Prepares the query part of the request url * @return */ private String prepareParamsUrl() { // prepare the request parameters ArrayList params = new ArrayList(); params.add("page=".concat(String.valueOf(pageFilter))); params.add("limit=".concat(String.valueOf(limitFilter))); if (domainIdFilter != null) { params.add("domain_id=".concat(domainIdFilter)); } String requestParams = ""; for (int i = 0; i < params.size(); i++) { String attrSep = "&"; if (i == 0) { attrSep = "?"; } requestParams = requestParams.concat(attrSep).concat(params.get(i)); } return requestParams; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy