01: /*
02: * CertStoreCallback.java
03: *
04: * Created on March 1, 2007, 3:19 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package com.sun.xml.wss.impl.callback;
11:
12: import java.security.cert.CertStore;
13: import javax.security.auth.callback.Callback;
14:
15: /**
16: *
17: * @author kumar jayanti
18: */
19: public class CertStoreCallback extends XWSSCallback implements Callback {
20:
21: private CertStore certStore;
22:
23: /** Creates a new instance of CertStoreCallback */
24: public CertStoreCallback() {
25: }
26:
27: public CertStore getCertStore() {
28: return this .certStore;
29: }
30:
31: public void setCertStore(CertStore store) {
32: this.certStore = store;
33: }
34: }
|