|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
This report was generated with an evaluation server license. Purchase Clover or configure your license. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TrustSelfSignedStrategy | Line # 8 | 1 | 1 | 0% |
0.0
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
No Tests | |||
1 | package net.sourceforge.subsonic.androidapp.service; | |
2 | ||
3 | import java.security.cert.CertificateException; | |
4 | import java.security.cert.X509Certificate; | |
5 | ||
6 | import net.sourceforge.subsonic.androidapp.service.ssl.TrustStrategy; | |
7 | ||
8 | public class TrustSelfSignedStrategy implements TrustStrategy { | |
9 | ||
10 | 0 |
![]() |
11 | public boolean isTrusted(X509Certificate[] chain, String authType) | |
12 | throws CertificateException { | |
13 | // TODO Auto-generated method stub | |
14 | 0 | return false; |
15 | } | |
16 | ||
17 | } |
|