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

com.capitalone.dashboard.request.ServiceAccountRequest Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.request;

import javax.validation.constraints.NotNull;

public class ServiceAccountRequest {

    @NotNull
    private String serviceAccount;

    @NotNull
    private String fileNames;

    public ServiceAccountRequest() {

    }

    public String getServiceAccount() {
        return serviceAccount;
    }

    public void setServiceAccount(String serviceAccount) {
        this.serviceAccount = serviceAccount;
    }

    public String getFileNames() {
        return fileNames;
    }

    public void setFileNames(String fileNames) {
        this.fileNames = fileNames;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy