KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > net > ssl > ManagerFactoryParameters


1 /*
2  * @(#)ManagerFactoryParameters.java 1.7 04/02/16
3  *
4  * Copyright (c) 2004 Sun Microsystems, Inc. All Rights Reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7   
8 /*
9  * NOTE:
10  * Because of various external restrictions (i.e. US export
11  * regulations, etc.), the actual source code can not be provided
12  * at this time. This file represents the skeleton of the source
13  * file, so that javadocs of the API can be created.
14  */

15
16 package javax.net.ssl;
17
18 /**
19  * This class is the base interface for providing
20  * algorithm-specific information to a KeyManagerFactory or
21  * TrustManagerFactory.
22  * <P>
23  * In some cases, initialization parameters other than keystores
24  * may be needed by a provider. Users of that particular provider
25  * are expected to pass an implementation of the appropriate
26  * sub-interface of this class as defined by the
27  * provider. The provider can then call the specified methods in
28  * the <CODE>ManagerFactoryParameters</CODE> implementation to obtain the
29  * needed information.
30  *
31  * @author Brad R. Wetmore
32  * @version 1.3, 06/24/03
33  * @since 1.4
34  */

35 public interface ManagerFactoryParameters
36 {
37 }
38
Popular Tags