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

org.adorsys.psd2.common.domain.JweEncryptedObject Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package org.adorsys.psd2.common.domain;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

@ApiModel(description="Represents a jwe encrypted object", value="JweEncryptedObject" )
public class JweEncryptedObject {
	private String jweString;

	@ApiModelProperty(value = "The JWE string containing the encrypted object.", required=true)
	public String getJweString() {
		return jweString;
	}
	public void setJweString(String jweString) {
		this.jweString = jweString;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy