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

edu.uiuc.ncsa.myproxy.oa4mp.client.AssetResponse Maven / Gradle / Ivy

The newest version!
package edu.uiuc.ncsa.myproxy.oa4mp.client;

import edu.uiuc.ncsa.oa4mp.delegation.common.services.Response;

import java.security.cert.X509Certificate;

/**
 * Response from a server containing the certificate chain and user name.
 * 

Created by Jeff Gaynor
* on 7/1/11 at 3:28 PM */ public class AssetResponse implements Response{ X509Certificate x509Certificates[]; String username; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public X509Certificate[] getX509Certificates() { return x509Certificates; } public void setX509Certificates(X509Certificate[] x509Certificates) { this.x509Certificates = x509Certificates; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy