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

com.smartystreets.api.SharedCredentials Maven / Gradle / Ivy

There is a newer version: 3.18.3
Show newest version
package com.smartystreets.api;

/**
 * SharedCredentials is useful if you want to use a website key.
 */
public class SharedCredentials implements Credentials {
    private String id;
    private String hostname;

    public SharedCredentials(String id, String hostname) {
        this.id = id;
        this.hostname = hostname;
    }

    public void sign(Request request) {
        request.putParameter("key", this.id);
        request.putHeader("Referer", this.hostname);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy