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

net.eightlives.friendlyssl.model.TermsOfServiceAgreeRequest Maven / Gradle / Ivy

package net.eightlives.friendlyssl.model;

import javax.validation.constraints.NotNull;

public class TermsOfServiceAgreeRequest {

    @NotNull
    private String termsOfServiceLink;

    public TermsOfServiceAgreeRequest() {
    }

    public TermsOfServiceAgreeRequest(String termsOfServiceLink) {
        this.termsOfServiceLink = termsOfServiceLink;
    }

    public String getTermsOfServiceLink() {
        return termsOfServiceLink;
    }

    public void setTermsOfServiceLink(String termsOfServiceLink) {
        this.termsOfServiceLink = termsOfServiceLink;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy