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

com.firstdata.clovergo.domain.model.Eula Maven / Gradle / Ivy

package com.firstdata.clovergo.domain.model;

import java.io.Serializable;

/**
 * Created by Arjun Chinya on 6/22/16.
 */
public final class Eula implements Serializable {
    private boolean accepted;
    private String id;
    private String url;
    private String version;

    public Eula(String id, String url, String version, boolean accepted) {
        this.id = id;
        this.url = url;
        this.version = version;
        this.accepted = accepted;
    }

    public boolean isAccepted() {
        return accepted;
    }

    public void setAccepted(boolean accepted) {
        this.accepted = accepted;
    }

    public String getId() {
        return id;
    }

    public String getUrl() {
        return url;
    }

    public String getVersion() {
        return version;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy