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

com.mailjet.client.Resource Maven / Gradle / Ivy

There is a newer version: 5.2.6
Show newest version
package com.mailjet.client;

import com.mailjet.client.enums.ApiAuthenticationType;
import com.mailjet.client.enums.ApiVersion;
import lombok.Getter;

/**
 *
 * @author guillaume
 */
public class Resource {

    @Getter
    private final String resource;

    @Getter
    private final String action;

    @Getter
	private final Boolean withoutNamespace;

    @Getter
	private final ApiVersion apiVersion;

    @Getter
    private final ApiAuthenticationType authenticationType;

	public Resource(String resource, String action, ApiVersion apiVersion, ApiAuthenticationType authenticationType, Boolean withoutNamespace) {
        this.resource = resource;
        this.action = action;
        this.withoutNamespace = withoutNamespace;
        this.apiVersion = apiVersion;
        this.authenticationType = authenticationType;
	}
    
    public Resource(String resource, String action, ApiVersion apiVersion, ApiAuthenticationType authenticationType) {

	    this(resource, action, apiVersion, authenticationType, false);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy