Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/share/classes/javax/net/ssl/TrustManagerFactorySpi.java
41159 views
1
/*
2
* Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
package javax.net.ssl;
27
28
import java.security.*;
29
30
/**
31
* This class defines the <i>Service Provider Interface</i> (<b>SPI</b>)
32
* for the <code>TrustManagerFactory</code> class.
33
*
34
* <p> All the abstract methods in this class must be implemented by each
35
* cryptographic service provider who wishes to supply the implementation
36
* of a particular trust manager factory.
37
*
38
* @since 1.4
39
* @see TrustManagerFactory
40
* @see TrustManager
41
*/
42
public abstract class TrustManagerFactorySpi {
43
/**
44
* Constructor for subclasses to call.
45
*/
46
public TrustManagerFactorySpi() {}
47
48
/**
49
* Initializes this factory with a source of certificate
50
* authorities and related trust material.
51
*
52
* @param ks the key store or null
53
* @throws KeyStoreException if this operation fails
54
* @see TrustManagerFactory#init(KeyStore)
55
*/
56
protected abstract void engineInit(KeyStore ks) throws KeyStoreException;
57
58
/**
59
* Initializes this factory with a source of provider-specific
60
* key material.
61
* <P>
62
* In some cases, initialization parameters other than a keystore
63
* may be needed by a provider. Users of that
64
* particular provider are expected to pass an implementation of
65
* the appropriate <CODE>ManagerFactoryParameters</CODE> as
66
* defined by the provider. The provider can then call the
67
* specified methods in the <CODE>ManagerFactoryParameters</CODE>
68
* implementation to obtain the needed information.
69
*
70
* @param spec an implementation of a provider-specific parameter
71
* specification
72
* @throws InvalidAlgorithmParameterException if there is problem
73
* with the parameters
74
* @see TrustManagerFactory#init(ManagerFactoryParameters spec)
75
*/
76
protected abstract void engineInit(ManagerFactoryParameters spec)
77
throws InvalidAlgorithmParameterException;
78
79
/**
80
* Returns one trust manager for each type of trust material.
81
*
82
* @throws IllegalStateException if the factory is not initialized.
83
*
84
* @return the trust managers
85
*/
86
protected abstract TrustManager[] engineGetTrustManagers();
87
}
88
89