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

org.springframework.social.partnercenter.api.Link Maven / Gradle / Ivy

Go to download

A provider extension for Spring Social to enable connectivity with Microsoft and an API binding for Microsoft's Partner Center API.

There is a newer version: 10.11.0
Show newest version
package org.springframework.social.partnercenter.api;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonInclude;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class Link {
	private String uri;
	private String method;
	private List
headers; public String getUri() { return uri; } public Link setUri(String uri) { this.uri = uri; return this; } public String getMethod() { return method; } public Link setMethod(String method) { this.method = method; return this; } public List
getHeaders() { return headers; } public Link setHeaders(List
headers) { this.headers = headers; return this; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy