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

com.capitalone.dashboard.request.EncryptionRequest 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 EncryptionRequest {
	@NotNull
	private String message;

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy