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

com.heroku.api.Key Maven / Gradle / Ivy

package com.heroku.api;

/**
 * TODO: Javadoc
 *
 * @author Naaman Newbold
 */
public class Key {
    String email;
    String contents;

    public String getEmail() {
        return email;
    }

    private void setEmail(String email) {
        this.email = email;
    }

    public String getContents() {
        return contents;
    }

    private void setContents(String contents) {
        this.contents = contents;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy