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

edu.uiuc.ncsa.sas.client.SASClient Maven / Gradle / Ivy

package edu.uiuc.ncsa.sas.client;

import edu.uiuc.ncsa.security.core.DateComparable;
import edu.uiuc.ncsa.security.core.Identifier;
import edu.uiuc.ncsa.security.core.util.IdentifiableImpl;
import net.sf.json.JSONObject;

import java.security.PublicKey;
import java.util.Date;

/**
 * 

Created by Jeff Gaynor
* on 8/15/22 at 8:43 AM */ public class SASClient extends IdentifiableImpl implements DateComparable { public SASClient(Identifier identifier) { super(identifier); } @Override public Date getCreationTS() { return creationTS; } PublicKey publicKey; String name; Date creationTS = new Date(); JSONObject cfg; public PublicKey getPublicKey() { return publicKey; } public void setPublicKey(PublicKey publicKey) { this.publicKey = publicKey; } public String getName() { return name; } public void setName(String name) { this.name = name; } public void setCreationTS(Date creationTS) { this.creationTS = creationTS; } public JSONObject getCfg() { return cfg; } public void setCfg(JSONObject cfg) { this.cfg = cfg; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy