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

com.alogic.cert.xscript.RootCert Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.alogic.cert.xscript;

import com.alogic.cert.CertificateContent;
import com.alogic.cert.CertificateStore;
import com.alogic.cert.CertificateStoreFactory;
import com.alogic.cert.PemCertificateContent;
import com.alogic.xscript.ExecuteWatcher;
import com.alogic.xscript.Logiclet;
import com.alogic.xscript.LogicletContext;
import com.alogic.xscript.doc.XsObject;
import com.anysoft.util.Properties;
import com.anysoft.util.PropertiesConstants;

/**
 * 获取根证书
 * @author yyduan
 * 
 * @since 1.6.11.9
 *
 */
public class RootCert extends NS{
	protected String cid = "$cert";
	
	public RootCert(String tag, Logiclet p) {
		super(tag, p);
	}

	@Override
	public void configure(Properties p){
		super.configure(p);
		
		cid = PropertiesConstants.getString(p, "cid", cid,true);
	}
	
	@Override
	protected void onExecute(XsObject root,XsObject current, LogicletContext ctx, ExecuteWatcher watcher) {
		CertificateStore store = CertificateStoreFactory.getDefault();
		CertificateContent pem = store.getRoot(new PemCertificateContent());
		
		try {
			ctx.setObject(cid, pem);
			super.onExecute(root, current, ctx, watcher);
		}finally{
			ctx.removeObject(cid);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy