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

com.mailgun.form.FormPropertyRequestInterceptor Maven / Gradle / Ivy

package com.mailgun.form;

import com.mailgun.interceptors.MailgunRequestInterceptor;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import feign.RequestInterceptor;
import feign.RequestTemplate;
import feign.form.FormProperty;

/**
 * 

* Implementation of the {@link RequestInterceptor} for a creating custom dynamic {@link FormProperty} * with allowed prefixes such as: {@code t:, o:, h:, v:} with the followed by any arbitrary value *

* @author Vitalii Chornobryvyi * @deprecated This class is deprecated and will be replaced by {@link MailgunRequestInterceptor} after 1st of the March 2024. * Please consider migrating to the new class for future updates. */ @Deprecated public class FormPropertyRequestInterceptor implements RequestInterceptor { private final Map> properties; private FormPropertyRequestInterceptor(Map> properties) { this.properties = properties; } public static Builder builder() { return new Builder(); } @Override public void apply(RequestTemplate requestTemplate) { requestTemplate.queries(properties); } public static class Builder { private final Map> properties = new HashMap<>(); private Builder() { } public Builder addProperty(String propertyName, String propertyValue) { properties.computeIfAbsent(propertyName, key -> new ArrayList<>()).add(propertyValue); return this; } public FormPropertyRequestInterceptor build() { return new FormPropertyRequestInterceptor(properties); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy