]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.project/src/org/simantics/project/management/TrustAllCertificates.java
Include acorn db in db.client feature and make it the default db driver
[simantics/platform.git] / bundles / org.simantics.project / src / org / simantics / project / management / TrustAllCertificates.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.project.management;\r
13 \r
14 import java.security.cert.Certificate;\r
15 import java.util.ArrayList;\r
16 \r
17 import org.eclipse.equinox.p2.core.UIServices;\r
18 \r
19 public class TrustAllCertificates extends UIServices {\r
20         @Override\r
21         public AuthenticationInfo getUsernamePassword(String location) {\r
22                 return null;\r
23         }\r
24 \r
25         @Override\r
26         public AuthenticationInfo getUsernamePassword(String location, AuthenticationInfo previousInfo) {\r
27                 return null;\r
28         }\r
29 \r
30         @Override\r
31         public TrustInfo getTrustInfo(Certificate[][] untrustedChain, String[] unsignedDetail) {\r
32                 ArrayList<Certificate> trustedCertificates = new ArrayList<Certificate>();\r
33                 for (Certificate[] chain : untrustedChain) {\r
34                         for (Certificate c : chain) {\r
35                                 trustedCertificates.add(c);\r
36                         }\r
37                 }\r
38                 // Trust all certificates!\r
39                 return new TrustInfo(trustedCertificates.toArray(new Certificate[0]), false, true);\r
40         }\r
41 }\r