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

com.blade.oauth2.message.OAuthMessage Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
/**
 * 
 */
package com.blade.oauth2.message;

import java.util.Map;

/**
 * 
 * @author BruceZCQ [[email protected]]
 * @version
 */
public interface OAuthMessage {

    String getLocationUri();

    void setLocationUri(String uri);

    String getBody();

    void setBody(String body);

    String getHeader(String name);

    void addHeader(String name, String header);

    Map getHeaders();

    void setHeaders(Map headers);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy