1 /* 2 * soapUI, copyright (C) 2004-2007 eviware.com 3 * 4 * soapUI is free software; you can redistribute it and/or modify it under the 5 * terms of version 2.1 of the GNU Lesser General Public License as published by 6 * the Free Software Foundation. 7 * 8 * soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 9 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 10 * See the GNU Lesser General Public License for more details at gnu.org. 11 */ 12 13 package com.eviware.soapui.settings; 14 15 import com.eviware.soapui.settings.Setting.SettingType; 16 17 /*** 18 * SSL-Proxy settings constants 19 * 20 * @author Ole.Matzura 21 */ 22 23 public interface SSLSettings 24 { 25 @Setting( name="keyStore", description="local keyStore to use", type=SettingType.FILE ) 26 public final static String KEYSTORE = SSLSettings.class.getSimpleName() + "@" + "keyStore"; 27 28 @Setting( name="keyStore password", description="keyStore password", type=SettingType.PASSWORD ) 29 public final static String KEYSTORE_PASSWORD = SSLSettings.class.getSimpleName() + "@" + "keyStorePassword"; 30 31 /* 32 @Setting( name="keyMaterials", description="local keyMaterials to use", type=SettingType.FILELIST ) 33 public final static String KEYMATERIALS = SSLSettings.class.getSimpleName() + "@" + "keyMaterials"; 34 */ 35 /* 36 @Setting( name="trustStore", description="local trustStore to use", type=SettingType.FILE ) 37 public final static String TRUSTSTORE = SSLSettings.class.getSimpleName() + "@" + "trustStore"; 38 39 @Setting( name="trustStore password", description="trustStore password", type=SettingType.PASSWORD ) 40 public final static String TRUSTSTORE_PASSWORD = SSLSettings.class.getSimpleName() + "@" + "trustStorePassword"; 41 */ 42 }