Lines 423-439
Link Here
|
423 |
String trustFile = cform.getTrustStoreFileName(); |
423 |
String trustFile = cform.getTrustStoreFileName(); |
424 |
if ((trustFile != null) && (trustFile.length()>0)) |
424 |
if ((trustFile != null) && (trustFile.length()>0)) |
425 |
mBServer.setAttribute(coname, |
425 |
mBServer.setAttribute(coname, |
426 |
new Attribute("trustStoreFile", trustFile)); |
426 |
new Attribute("truststoreFile", trustFile)); |
427 |
|
427 |
|
428 |
String trustPass = cform.getTrustStorePassword(); |
428 |
String trustPass = cform.getTrustStorePassword(); |
429 |
if ((trustPass != null) && (trustPass.length()>0)) |
429 |
if ((trustPass != null) && (trustPass.length()>0)) |
430 |
mBServer.setAttribute(coname, |
430 |
mBServer.setAttribute(coname, |
431 |
new Attribute("trustStorePass", trustPass)); |
431 |
new Attribute("truststorePass", trustPass)); |
432 |
|
432 |
|
433 |
String trustType = cform.getTrustStoreType(); |
433 |
String trustType = cform.getTrustStoreType(); |
434 |
if ((trustType != null) && (trustType.length()>0)) |
434 |
if ((trustType != null) && (trustType.length()>0)) |
435 |
mBServer.setAttribute(coname, |
435 |
mBServer.setAttribute(coname, |
436 |
new Attribute("trustStoreType", trustType)); |
436 |
new Attribute("truststoreType", trustType)); |
437 |
|
437 |
|
438 |
String sslProtocol = cform.getSslProtocol(); |
438 |
String sslProtocol = cform.getSslProtocol(); |
439 |
if ((sslProtocol != null) && (sslProtocol.length()>0)) |
439 |
if ((sslProtocol != null) && (sslProtocol.length()>0)) |