SYMBOL INDEX (1090 symbols across 97 files) FILE: soap-builder/src/main/java/org/reficio/ws/builder/SoapBuilder.java type SoapBuilder (line 31) | public interface SoapBuilder { method getOperations (line 33) | List getOperations(); method operation (line 35) | SoapOperationFinder operation(); method getContext (line 37) | SoapContext getContext(); method getOperationBuilder (line 39) | SoapOperationBuilder getOperationBuilder(SoapOperation operation); method buildInputMessage (line 41) | String buildInputMessage(SoapOperation operation); method buildInputMessage (line 43) | String buildInputMessage(SoapOperation operation, SoapContext context); method buildOutputMessage (line 45) | String buildOutputMessage(SoapOperation operation); method buildOutputMessage (line 47) | String buildOutputMessage(SoapOperation operation, SoapContext context); method buildFault (line 49) | String buildFault(String code, String message); method buildFault (line 51) | String buildFault(String code, String message, SoapContext context); method buildEmptyFault (line 53) | String buildEmptyFault(); method buildEmptyFault (line 55) | String buildEmptyFault(SoapContext context); method buildEmptyMessage (line 57) | String buildEmptyMessage(); method buildEmptyMessage (line 59) | String buildEmptyMessage(SoapContext context); method getBindingName (line 61) | QName getBindingName(); method getBinding (line 63) | Binding getBinding(); method getServiceUrls (line 65) | List getServiceUrls(); method validateInputMessage (line 67) | void validateInputMessage(SoapOperation operation, String message); method validateInputMessage (line 69) | void validateInputMessage(SoapOperation operation, String message, boo... method validateOutputMessage (line 71) | void validateOutputMessage(SoapOperation operation, String message); method validateOutputMessage (line 73) | void validateOutputMessage(SoapOperation operation, String message, bo... method isRpc (line 75) | boolean isRpc(); method isInputSoapEncoded (line 77) | boolean isInputSoapEncoded(SoapOperation operation); method isOutputSoapEncoded (line 79) | boolean isOutputSoapEncoded(SoapOperation operation); FILE: soap-builder/src/main/java/org/reficio/ws/builder/SoapBuilderFinder.java type SoapBuilderFinder (line 30) | public interface SoapBuilderFinder { method name (line 32) | SoapBuilderFinder name(String name); method name (line 34) | SoapBuilderFinder name(QName name); method namespaceURI (line 36) | SoapBuilderFinder namespaceURI(String namespaceURI); method localPart (line 38) | SoapBuilderFinder localPart(String localPart); method prefix (line 40) | SoapBuilderFinder prefix(String prefix); method find (line 42) | SoapBuilder find(); method find (line 44) | SoapBuilder find(SoapContext context); FILE: soap-builder/src/main/java/org/reficio/ws/builder/SoapOperation.java type SoapOperation (line 29) | public interface SoapOperation { method getBindingName (line 31) | QName getBindingName(); method getOperationName (line 33) | String getOperationName(); method getOperationInputName (line 35) | String getOperationInputName(); method getOperationOutputName (line 37) | String getOperationOutputName(); method getSoapAction (line 39) | String getSoapAction(); method isRpc (line 41) | boolean isRpc(); method isInputSoapEncoded (line 43) | boolean isInputSoapEncoded(); method isOutputSoapEncoded (line 45) | boolean isOutputSoapEncoded(); FILE: soap-builder/src/main/java/org/reficio/ws/builder/SoapOperationBuilder.java type SoapOperationBuilder (line 27) | public interface SoapOperationBuilder extends SoapOperation { method setContext (line 29) | void setContext(SoapContext context); method getContext (line 31) | SoapContext getContext(); method buildInputMessage (line 33) | String buildInputMessage(); method buildInputMessage (line 35) | String buildInputMessage(SoapContext context); method buildOutputMessage (line 37) | String buildOutputMessage(); method buildOutputMessage (line 39) | String buildOutputMessage(SoapContext context); method buildFault (line 41) | String buildFault(String code, String message); method buildFault (line 43) | String buildFault(String code, String message, SoapContext context); method buildEmptyFault (line 45) | String buildEmptyFault(); method buildEmptyFault (line 47) | String buildEmptyFault(SoapContext context); method buildEmptyMessage (line 49) | String buildEmptyMessage(); method buildEmptyMessage (line 51) | String buildEmptyMessage(SoapContext context); method validateInputMessage (line 53) | void validateInputMessage(String message); method validateInputMessage (line 55) | void validateInputMessage(String message, boolean strict); method validateOutputMessage (line 57) | void validateOutputMessage(String message); method validateOutputMessage (line 59) | void validateOutputMessage(String message, boolean strict); FILE: soap-builder/src/main/java/org/reficio/ws/builder/SoapOperationFinder.java type SoapOperationFinder (line 27) | public interface SoapOperationFinder { method name (line 29) | SoapOperationFinder name(String operationName); method soapAction (line 31) | SoapOperationFinder soapAction(String soapAction); method inputName (line 33) | SoapOperationFinder inputName(String inputName); method outputName (line 35) | SoapOperationFinder outputName(String inputName); method find (line 37) | SoapOperationBuilder find(); method find (line 39) | SoapOperationBuilder find(SoapContext context); FILE: soap-builder/src/main/java/org/reficio/ws/builder/core/SoapBuilderImpl.java class SoapBuilderImpl (line 43) | class SoapBuilderImpl implements SoapBuilder { method SoapBuilderImpl (line 50) | SoapBuilderImpl(SoapLegacyFacade soapFacade, Binding binding, SoapCont... method initializeServiceUrls (line 58) | @SuppressWarnings("unchecked") method getBindingOperation (line 70) | public BindingOperation getBindingOperation(SoapOperation op) { method getOperations (line 79) | @Override method getContext (line 89) | @Override method getOperationBuilder (line 94) | @Override method operation (line 100) | @Override method buildInputMessage (line 105) | @Override method buildInputMessage (line 110) | @Override method buildOutputMessage (line 119) | @Override method buildOutputMessage (line 124) | @Override method buildFault (line 133) | @Override method buildFault (line 138) | @Override method buildEmptyFault (line 143) | @Override method buildEmptyFault (line 148) | @Override method buildEmptyMessage (line 153) | @Override method buildEmptyMessage (line 158) | @Override method getBindingName (line 163) | @Override method getBinding (line 168) | @Override method getServiceUrls (line 173) | @Override method validateInputMessage (line 178) | @Override method validateInputMessage (line 184) | @Override method validateOutputMessage (line 190) | @Override method validateOutputMessage (line 196) | @Override method isRpc (line 202) | @Override method isInputSoapEncoded (line 207) | @Override method isOutputSoapEncoded (line 212) | @Override FILE: soap-builder/src/main/java/org/reficio/ws/builder/core/SoapOperationFinderImpl.java class SoapOperationFinderImpl (line 37) | class SoapOperationFinderImpl implements SoapOperationFinder { method SoapOperationFinderImpl (line 47) | SoapOperationFinderImpl(SoapBuilder builder, Binding binding) { method name (line 52) | @Override method soapAction (line 59) | @Override method inputName (line 66) | @Override method outputName (line 73) | @Override method find (line 80) | @Override method find (line 104) | @Override method validateInput (line 111) | private void validateInput() { method checkOperationName (line 122) | private boolean checkOperationName(BindingOperation op) { method checkSoapAction (line 129) | private boolean checkSoapAction(BindingOperation op) { method checkOperationInputName (line 136) | private boolean checkOperationInputName(BindingOperation op) { method checkOperationOutputName (line 143) | private boolean checkOperationOutputName(BindingOperation op) { FILE: soap-builder/src/main/java/org/reficio/ws/builder/core/SoapOperationImpl.java class SoapOperationImpl (line 34) | class SoapOperationImpl implements SoapOperation, SoapOperationBuilder { method SoapOperationImpl (line 44) | SoapOperationImpl(SoapBuilder builder, QName bindingName, String opera... method getBindingName (line 56) | public QName getBindingName() { method getOperationName (line 60) | public String getOperationName() { method getOperationInputName (line 64) | public String getOperationInputName() { method getOperationOutputName (line 68) | public String getOperationOutputName() { method getSoapAction (line 72) | public String getSoapAction() { method isRpc (line 76) | @Override method isInputSoapEncoded (line 81) | @Override method isOutputSoapEncoded (line 86) | @Override method create (line 91) | static SoapOperationBuilder create(SoapBuilder builder, Binding bindin... method create (line 96) | static SoapOperationBuilder create(SoapBuilder builder, Binding bindin... method toString (line 103) | public String toString() { method setContext (line 108) | @Override method getContext (line 113) | @Override method buildInputMessage (line 118) | @Override method buildInputMessage (line 123) | @Override method buildOutputMessage (line 128) | @Override method buildOutputMessage (line 133) | @Override method buildFault (line 138) | @Override method buildFault (line 143) | @Override method buildEmptyFault (line 148) | @Override method buildEmptyFault (line 153) | @Override method buildEmptyMessage (line 158) | @Override method buildEmptyMessage (line 163) | @Override method validateInputMessage (line 168) | @Override method validateInputMessage (line 173) | @Override method validateOutputMessage (line 178) | @Override method validateOutputMessage (line 183) | @Override FILE: soap-builder/src/main/java/org/reficio/ws/builder/core/SoapUtils.java class SoapUtils (line 35) | public class SoapUtils { method normalizeSoapAction (line 38) | public static String normalizeSoapAction(String soapAction) { method getSOAPActionUri (line 49) | public static String getSOAPActionUri(BindingOperation operation) { method createOperation (line 66) | public static SoapOperationBuilder createOperation(SoapBuilder builder... FILE: soap-builder/src/main/java/org/reficio/ws/builder/core/Wsdl.java class Wsdl (line 42) | public final class Wsdl { method Wsdl (line 47) | private Wsdl(URL wsdlUrl) { method parse (line 56) | public static Wsdl parse(URL wsdlUrl) { method parse (line 61) | public static Wsdl parse(String wsdlUrl) { method getBindings (line 70) | public List getBindings() { method binding (line 74) | public SoapBuilderFinder binding() { method saveWsdl (line 78) | public URL saveWsdl(File rootWsdl) { method saveWsdl (line 82) | public static URL saveWsdl(URL wsdlUrl, File rootWsdl) { method printBindings (line 86) | public void printBindings() { class SoapBuilderFinderImpl (line 93) | class SoapBuilderFinderImpl implements SoapBuilderFinder { method SoapBuilderFinderImpl (line 94) | SoapBuilderFinderImpl() { method name (line 101) | @Override method name (line 106) | @Override method namespaceURI (line 114) | @Override method localPart (line 120) | @Override method prefix (line 126) | @Override method find (line 132) | @Override method find (line 138) | @Override method getBindingName (line 144) | private QName getBindingName() { method validate (line 170) | private void validate() { method getBuilder (line 177) | public SoapBuilder getBuilder(String bindingName) { method getBuilder (line 181) | public SoapBuilder getBuilder(String bindingName, SoapContext context) { method getBuilder (line 186) | public SoapBuilder getBuilder(QName bindingName) { method getBuilder (line 190) | public SoapBuilder getBuilder(QName bindingName, SoapContext context) { FILE: soap-builder/src/test/java/org/reficio/ws/builder/DefinitionSaveTest.java class DefinitionSaveTest (line 43) | public class DefinitionSaveTest { method getServiceFolder (line 45) | public static File getServiceFolder(int serviceId) { method createTempFolder (line 55) | public static File createTempFolder(String name) throws IOException { method getGeneratedFolder (line 66) | public static File getGeneratedFolder(int serviceId) throws WSDLExcept... method getFileNames (line 83) | public static List getFileNames(File folder) { method findFile (line 94) | public static File findFile(File folder, String name) { method testDefinitionSave (line 104) | public static void testDefinitionSave(int serviceId) { method testDefinitionSaveService (line 135) | @Test FILE: soap-builder/src/test/java/org/reficio/ws/builder/MessageComplianceTest.java class MessageComplianceTest (line 40) | public class MessageComplianceTest { method getContent (line 44) | public static String getContent(String folderPath, String fileName) { method testEmptyFaultSoap11 (line 67) | @Test method testEmptyFaultSoap12 (line 75) | @Test method testFaultSoap11 (line 83) | @Test method testFaultSoap12 (line 91) | @Test method testEmptyMessageSoap11 (line 99) | @Test method testEmptyMessageSoap12 (line 107) | @Test FILE: soap-builder/src/test/java/org/reficio/ws/builder/ServiceComplianceTest.java class ServiceComplianceTest (line 47) | public class ServiceComplianceTest { type MessageType (line 51) | enum MessageType {REQUEST, RESPONSE} method getTestServiceFolderPath (line 53) | public static String getTestServiceFolderPath(int testServiceId) { method getDefinitionUrl (line 58) | public static URL getDefinitionUrl(int testServiceId) { method getDefinition (line 64) | public static Definition getDefinition(URL wsdlUrl) throws WSDLExcepti... method getExpectedMessage (line 70) | public static String getExpectedMessage(int testServiceId, String bind... method getExpectedRequest (line 88) | public static String getExpectedRequest(int testServiceId, String bind... method getExpectedResponse (line 92) | public static String getExpectedResponse(int testServiceId, String bin... method testService (line 97) | @SuppressWarnings("unchecked") method testService01 (line 135) | @Test method testService02 (line 140) | @Test method testService03 (line 145) | @Test method testService04 (line 150) | @Test method testService05 (line 155) | @Test method testService06 (line 160) | @Test method testService07 (line 165) | @Test method testService08 (line 170) | @Test method testService09 (line 175) | @Test method testService10 (line 180) | @Test method testService11 (line 185) | @Test method testService12 (line 190) | @Test method testService13 (line 195) | @Test method testService14 (line 200) | @Test method testService15 (line 205) | @Test method testService16 (line 210) | @Test method testService17 (line 215) | @Test method testService18 (line 220) | @Test FILE: soap-builder/src/test/java/org/reficio/ws/builder/SoapBuilderImplTest.java class SoapBuilderImplTest (line 30) | public class SoapBuilderImplTest { method testLoadSnowboard_Bug_851 (line 32) | @Test FILE: soap-builder/src/test/java/org/reficio/ws/builder/SoapOperationFinderImplTest.java class SoapOperationFinderImplTest (line 30) | public class SoapOperationFinderImplTest { method operation (line 32) | public SoapOperationFinder operation() { method testFinderNoArguments (line 39) | @Test(expected = IllegalArgumentException.class) method testFinderWrongArgument (line 44) | @Test(expected = NullPointerException.class) method testFinderNoOperation (line 49) | @Test(expected = SoapBuilderException.class) method testFindOk (line 54) | @Test method testFindNameOkWrongAction (line 59) | @Test(expected = SoapBuilderException.class) FILE: soap-builder/src/test/java/org/reficio/ws/builder/WsdlTest.java class WsdlTest (line 36) | public class WsdlTest { method testParseNullUrl (line 38) | @Test(expected = NullPointerException.class) method testParseWrongUrl (line 43) | @Test(expected = SoapBuilderException.class) method testParseTestWsdl (line 50) | @Test method testParseTestWsdlNullContext (line 67) | @Test(expected = NullPointerException.class) method testParseTestWsdlProperContext (line 75) | @Test FILE: soap-client/src/main/java/org/reficio/ws/client/SoapClientException.java class SoapClientException (line 29) | public class SoapClientException extends SoapException { method SoapClientException (line 30) | public SoapClientException(String message) { method SoapClientException (line 34) | public SoapClientException(String message, Throwable cause) { method SoapClientException (line 38) | public SoapClientException(Throwable cause) { FILE: soap-client/src/main/java/org/reficio/ws/client/TransmissionException.java class TransmissionException (line 27) | public class TransmissionException extends SoapClientException { method TransmissionException (line 32) | public TransmissionException(String message) { method TransmissionException (line 38) | public TransmissionException(String message, Throwable ex) { method TransmissionException (line 44) | public TransmissionException(String response, Integer errorCode) { method getErrorResponse (line 50) | public String getErrorResponse() { method getErrorCode (line 54) | public Integer getErrorCode() { FILE: soap-client/src/main/java/org/reficio/ws/client/core/Security.java class Security (line 39) | public class Security { method getTrustStore (line 62) | public KeyStore getTrustStore() { method getTrustStorePassword (line 66) | public char[] getTrustStorePassword() { method getTrustStorePasswordAsString (line 70) | public String getTrustStorePasswordAsString() { method getTrustStoreType (line 74) | public String getTrustStoreType() { method getKeyStore (line 78) | public KeyStore getKeyStore() { method getKeyStorePassword (line 82) | public char[] getKeyStorePassword() { method getKeyStorePasswordAsString (line 86) | public String getKeyStorePasswordAsString() { method getKeyStoreType (line 90) | public String getKeyStoreType() { method getAuthUsername (line 94) | public String getAuthUsername() { method getAuthPassword (line 98) | public String getAuthPassword() { method getAuthWorkstation (line 102) | public String getAuthWorkstation() { method getAuthDomain (line 106) | public String getAuthDomain() { method getAuthMethod (line 110) | public String getAuthMethod() { method isAuthEnabled (line 114) | public boolean isAuthEnabled() { method isAuthBasic (line 118) | public boolean isAuthBasic() { method isAuthDigest (line 122) | public boolean isAuthDigest() { method isAuthNtlm (line 126) | public boolean isAuthNtlm() { method isAuthSpnego (line 130) | public boolean isAuthSpnego() { method isStrictHostVerification (line 134) | public boolean isStrictHostVerification() { method getSslContextProtocol (line 138) | public String getSslContextProtocol() { method builder (line 145) | public static Builder builder() { method Security (line 149) | private Security() { class Builder (line 155) | public static class Builder { method authBasic (line 177) | public Builder authBasic(String user, String password) { method authDigest (line 184) | public Builder authDigest(String user, String password) { method authNtlm (line 191) | public Builder authNtlm(String user, String password, String worksta... method authSpnego (line 200) | public Builder authSpnego() { method keyStore (line 209) | public Builder keyStore(KeyStore value) { method keyStoreUrl (line 219) | public Builder keyStoreUrl(URL value) { method keyStoreUrl (line 229) | public Builder keyStoreUrl(String value) { method keyStoreType (line 243) | public Builder keyStoreType(String value) { method keyStorePassword (line 253) | public Builder keyStorePassword(String value) { method trustStore (line 264) | public Builder trustStore(KeyStore value) { method trustStoreUrl (line 275) | public Builder trustStoreUrl(URL value) { method trustStoreUrl (line 285) | public Builder trustStoreUrl(String value) { method trustStoreType (line 299) | public Builder trustStoreType(String value) { method trustStorePassword (line 309) | public Builder trustStorePassword(String value) { method strictHostVerification (line 322) | public Builder strictHostVerification(boolean value) { method sslContextProtocol (line 331) | public Builder sslContextProtocol(String value) { method build (line 342) | public Security build() { method initKeyStore (line 365) | private KeyStore initKeyStore(KeyStore keyStore, URL keyStoreUrl, St... FILE: soap-client/src/main/java/org/reficio/ws/client/core/SecurityFactory.java class SecurityFactory (line 32) | public class SecurityFactory { method getTrustStore (line 53) | public KeyStore getTrustStore() { method setTrustStore (line 57) | public void setTrustStore(KeyStore trustStore) { method getTrustStorePassword (line 61) | public String getTrustStorePassword() { method setTrustStorePassword (line 65) | public void setTrustStorePassword(String trustStorePassword) { method getTrustStoreType (line 69) | public String getTrustStoreType() { method setTrustStoreType (line 73) | public void setTrustStoreType(String trustStoreType) { method getKeyStore (line 77) | public KeyStore getKeyStore() { method setKeyStore (line 81) | public void setKeyStore(KeyStore keyStore) { method getKeyStorePassword (line 85) | public String getKeyStorePassword() { method setKeyStorePassword (line 89) | public void setKeyStorePassword(String keyStorePassword) { method getKeyStoreType (line 93) | public String getKeyStoreType() { method setKeyStoreType (line 97) | public void setKeyStoreType(String keyStoreType) { method getAuthUsername (line 101) | public String getAuthUsername() { method setAuthUsername (line 105) | public void setAuthUsername(String authUsername) { method getAuthPassword (line 109) | public String getAuthPassword() { method setAuthPassword (line 113) | public void setAuthPassword(String authPassword) { method getAuthWorkstation (line 117) | public String getAuthWorkstation() { method setAuthWorkstation (line 121) | public void setAuthWorkstation(String authWorkstation) { method getAuthDomain (line 125) | public String getAuthDomain() { method setAuthDomain (line 129) | public void setAuthDomain(String authDomain) { method getAuthMethod (line 133) | public String getAuthMethod() { method setAuthMethod (line 137) | public void setAuthMethod(String authMethod) { method getStrictHostVerification (line 141) | public Boolean getStrictHostVerification() { method setStrictHostVerification (line 145) | public void setStrictHostVerification(Boolean strictHostVerification) { method getSslContextProtocol (line 149) | public String getSslContextProtocol() { method setSslContextProtocol (line 153) | public void setSslContextProtocol(String sslContextProtocol) { method create (line 157) | public Security create() { method configureKeyStore (line 168) | private void configureKeyStore(Security.Builder builder) { method configureTrustStore (line 183) | private void configureTrustStore(Security.Builder builder) { method configureAuthentication (line 198) | private void configureAuthentication(Security.Builder builder) { method configureTransport (line 213) | private void configureTransport(Security.Builder builder) { FILE: soap-client/src/main/java/org/reficio/ws/client/core/SoapClient.java class SoapClient (line 71) | @ThreadSafe method post (line 102) | public String post(String requestEnvelope) { method post (line 113) | public String post(String soapAction, String requestEnvelope) { method disconnect (line 127) | public void disconnect() { method generatePost (line 136) | private HttpPost generatePost(String soapAction, String requestEnvelop... method transmit (line 159) | private String transmit(String soapAction, String data) { method executePost (line 164) | private String executePost(HttpPost post) { method initialize (line 189) | private void initialize() { method configureClient (line 196) | private void configureClient() { method configureAuthentication (line 204) | private void configureAuthentication() { method configureAuthentication (line 209) | private void configureAuthentication(URI uri, Security security) { method configureTls (line 227) | private void configureTls() { method registerTlsScheme (line 248) | private void registerTlsScheme(SchemeLayeredSocketFactory factory, int... method configureProxy (line 253) | private void configureProxy() { method SoapClient (line 282) | private SoapClient() { class Builder (line 288) | public static class Builder { method endpointUri (line 305) | public Builder endpointUri(String value) { method endpointUri (line 319) | public Builder endpointUri(URI value) { method proxyUri (line 329) | public Builder proxyUri(String value) { method proxyUri (line 343) | public Builder proxyUri(URI value) { method endpointSecurity (line 349) | public Builder endpointSecurity(Security value) { method proxySecurity (line 354) | public Builder proxySecurity(Security value) { method readTimeoutInMillis (line 363) | public Builder readTimeoutInMillis(int value) { method connectTimeoutInMillis (line 373) | public Builder connectTimeoutInMillis(int value) { method build (line 384) | public SoapClient build() { method initializeClient (line 388) | private SoapClient initializeClient() { method builder (line 415) | public static Builder builder() { FILE: soap-client/src/main/java/org/reficio/ws/client/core/SoapClientFactory.java class SoapClientFactory (line 25) | public class SoapClientFactory { method getEndpointUri (line 36) | public String getEndpointUri() { method setEndpointUri (line 40) | public void setEndpointUri(String endpointUri) { method getProxyUri (line 44) | public String getProxyUri() { method setProxyUri (line 48) | public void setProxyUri(String proxyUri) { method getReadTimeoutInMillis (line 52) | public Integer getReadTimeoutInMillis() { method setReadTimeoutInMillis (line 56) | public void setReadTimeoutInMillis(Integer readTimeoutInMillis) { method getConnectTimeoutInMillis (line 60) | public Integer getConnectTimeoutInMillis() { method setConnectTimeoutInMillis (line 64) | public void setConnectTimeoutInMillis(Integer connectTimeoutInMillis) { method getEndpointSecurity (line 68) | public Security getEndpointSecurity() { method setEndpointSecurity (line 72) | public void setEndpointSecurity(Security endpointSecurity) { method getProxySecurity (line 76) | public Security getProxySecurity() { method setProxySecurity (line 80) | public void setProxySecurity(Security proxySecurity) { method create (line 84) | public SoapClient create() { FILE: soap-client/src/main/java/org/reficio/ws/client/core/SoapConstants.java class SoapConstants (line 25) | final class SoapConstants { method SoapConstants (line 27) | private SoapConstants() { type AuthMethod (line 73) | public static enum AuthMethod { FILE: soap-client/src/main/java/org/reficio/ws/client/ssl/MultiX509TrustManager.java class MultiX509TrustManager (line 33) | public class MultiX509TrustManager implements X509TrustManager { method MultiX509TrustManager (line 37) | public MultiX509TrustManager(List managers) { method checkClientTrusted (line 41) | @Override method checkServerTrusted (line 56) | @Override method getAcceptedIssuers (line 71) | @Override FILE: soap-client/src/main/java/org/reficio/ws/client/ssl/SSLUtils.java class SSLUtils (line 36) | public class SSLUtils { method getTrustManager (line 38) | public static X509TrustManager getTrustManager(KeyStore trustStore) th... method getKeyManager (line 44) | public static X509KeyManager getKeyManager(KeyStore keyStore, char[] k... method getMultiTrustManager (line 50) | public static X509TrustManager getMultiTrustManager(X509TrustManager..... method getMergedSocketFactory (line 58) | public static SSLSocketFactory getMergedSocketFactory(org.reficio.ws.c... method getFactory (line 76) | public static SSLSocketFactory getFactory(Security security) throws Ge... FILE: soap-client/src/test/java/org/reficio/ws/client/SimpleClientTest.java class SimpleClientTest (line 33) | public class SimpleClientTest { method connectTimeout (line 38) | @Ignore FILE: soap-common/src/main/java/org/reficio/ws/SoapBuilderException.java class SoapBuilderException (line 27) | public class SoapBuilderException extends SoapException { method SoapBuilderException (line 28) | public SoapBuilderException(String message) { method SoapBuilderException (line 32) | public SoapBuilderException(String message, Throwable cause) { method SoapBuilderException (line 36) | public SoapBuilderException(Throwable cause) { FILE: soap-common/src/main/java/org/reficio/ws/SoapContext.java class SoapContext (line 31) | public class SoapContext { method SoapContext (line 65) | public SoapContext(boolean exampleContent, boolean typeComments, boole... method SoapContext (line 87) | public SoapContext(boolean exampleContent, boolean typeComments, boole... method isBuildOptional (line 98) | public boolean isBuildOptional() { method isAlwaysBuildHeaders (line 102) | public boolean isAlwaysBuildHeaders() { method isExampleContent (line 106) | public boolean isExampleContent() { method isTypeComments (line 110) | public boolean isTypeComments() { method isValueComments (line 114) | public boolean isValueComments() { method getExcludedTypes (line 118) | public Set getExcludedTypes() { method getMultiValuesProvider (line 122) | public SoapMultiValuesProvider getMultiValuesProvider() { method builder (line 126) | public static ContextBuilder builder() { class ContextBuilder (line 130) | public static class ContextBuilder { method exampleContent (line 145) | public ContextBuilder exampleContent(boolean value) { method typeComments (line 156) | public ContextBuilder typeComments(boolean value) { method valueComments (line 167) | public ContextBuilder valueComments(boolean value) { method buildOptional (line 178) | public ContextBuilder buildOptional(boolean value) { method alwaysBuildHeaders (line 189) | public ContextBuilder alwaysBuildHeaders(boolean value) { method excludedTypes (line 203) | public ContextBuilder excludedTypes(Set excludedTypes) { method multiValuesProvider (line 208) | public ContextBuilder multiValuesProvider(SoapMultiValuesProvider mu... method build (line 218) | public SoapContext build() { FILE: soap-common/src/main/java/org/reficio/ws/SoapException.java class SoapException (line 27) | public class SoapException extends RuntimeException { method SoapException (line 28) | public SoapException(String s) { method SoapException (line 32) | public SoapException(String s, Throwable throwable) { method SoapException (line 36) | public SoapException(Throwable throwable) { FILE: soap-common/src/main/java/org/reficio/ws/SoapMultiValuesProvider.java type SoapMultiValuesProvider (line 28) | public interface SoapMultiValuesProvider { method getMultiValues (line 30) | Set getMultiValues(QName name); FILE: soap-common/src/main/java/org/reficio/ws/SoapValidationException.java class SoapValidationException (line 30) | public class SoapValidationException extends SoapException { method SoapValidationException (line 34) | public SoapValidationException(List errors) { method getErrors (line 39) | public List getErrors() { FILE: soap-common/src/main/java/org/reficio/ws/common/FileWriter.java class FileWriter (line 30) | class FileWriter { method createClassFile (line 43) | public File createClassFile(File rootLocation, String packageName, Str... FILE: soap-common/src/main/java/org/reficio/ws/common/ResourceUtils.java class ResourceUtils (line 36) | public class ResourceUtils { method getResourceWithAbsolutePackagePath (line 38) | public static URL getResourceWithAbsolutePackagePath(String absolutePa... class Path (line 42) | private static class Path { method getFullPath (line 47) | private static String getFullPath(String resourcePath) { method parsePath (line 57) | private static Path parsePath(String resourcePath) { method getResource (line 65) | public static URL getResource(String resourcePath) { method getResource (line 70) | public static URL getResource(Class clazz, String resourcePath) { method getResourceAsStream (line 75) | public static InputStream getResourceAsStream(String resourcePath) { method getResourceAsStream (line 80) | public static InputStream getResourceAsStream(Class clazz, String r... method getResourceWithAbsolutePackagePath (line 85) | public static URL getResourceWithAbsolutePackagePath(Class clazz, S... method getResourceWithAbsolutePackagePathAsStream (line 102) | public static InputStream getResourceWithAbsolutePackagePathAsStream(S... method getResourceWithAbsolutePackagePathAsStream (line 106) | public static InputStream getResourceWithAbsolutePackagePathAsStream(C... method getResourcePath (line 122) | private static String getResourcePath(String absolutePackagePath, Stri... method formatArgument (line 130) | private static String formatArgument(String argument) { method constructResourcePath (line 135) | private static String constructResourcePath(String packagePath, String... method removeLeadingUnixSeparators (line 143) | private static String removeLeadingUnixSeparators(String argument) { FILE: soap-common/src/main/java/org/reficio/ws/common/SimpleValuesProvider.java class SimpleValuesProvider (line 33) | public class SimpleValuesProvider implements SoapMultiValuesProvider { method SimpleValuesProvider (line 37) | public SimpleValuesProvider() { method SimpleValuesProvider (line 41) | public SimpleValuesProvider(Map> multiValues) { method getMultiValues (line 48) | @Override method addMultiValues (line 54) | public void addMultiValues(QName name, Set values) { FILE: soap-common/src/main/java/org/reficio/ws/common/Wsdl11Writer.java class Wsdl11Writer (line 49) | public class Wsdl11Writer { method Wsdl11Writer (line 58) | public Wsdl11Writer(File baseFolder) { method writeWSDL (line 63) | public void writeWSDL(String name, Definition definition) { method writeWSDL (line 74) | @SuppressWarnings("unchecked") method processSchemas (line 183) | private void processSchemas(Definition definition, Map... method processSchema (line 198) | private void processSchema(Definition definition, Schema schema, Strin... method changeLocations (line 243) | private void changeLocations(Element element, Map chan... method processImport (line 254) | private void processImport(Node importNode, Map change... method normalizeName (line 270) | private String normalizeName(String name) { FILE: soap-common/src/main/java/org/reficio/ws/common/XmlUtils.java class XmlUtils (line 43) | public final class XmlUtils { method XmlUtils (line 45) | private XmlUtils() { method getNodeNames (line 48) | public static Set getNodeNames(Set nodes) { method getNodeTypes (line 56) | public static Set getNodeTypes(Set nodes) { method getRootNodes (line 64) | public static Set getRootNodes(DOMSource request) { method populateNodes (line 68) | public static Set populateNodes(Node node, Set nodes) { method nodeToQName (line 78) | public static QName nodeToQName(Node node) { method xmlStringToSource (line 82) | public static Source xmlStringToSource(String xmlString) { method sourceToXmlString (line 100) | public static String sourceToXmlString(Source xmlSource) { method serializePretty (line 119) | public static String serializePretty(Document document) { method normalizeAndRemoveValues (line 138) | public static String normalizeAndRemoveValues(String xmlContent) { method processNode (line 159) | public static void processNode(Node node) throws Exception { method isIdenticalNormalizedWithoutValues (line 169) | public static boolean isIdenticalNormalizedWithoutValues(String expect... FILE: soap-common/src/test/java/org/reficio/ws/common/ResourceLoaderTest.java class ResourceLoaderTest (line 27) | public class ResourceLoaderTest { method loadWithSystemClassloaderTest (line 29) | @Test FILE: soap-common/src/test/java/org/reficio/ws/common/ResourceUtilsTest.java class ResourceUtilsTest (line 32) | public class ResourceUtilsTest { method testResourceLoading_failed (line 34) | @Test(expected = IllegalArgumentException.class) method testResourceLoading_failed_noPackage (line 39) | @Test(expected = IllegalArgumentException.class) method testResourceLoading_noLeadingTrailing (line 44) | @Test method testResourceLoading_noLeadingTrailing_noPackage (line 50) | @Test method testResourceLoading_noLeading (line 56) | @Test method testResourceLoading_noLeading_noPackage (line 62) | @Test method testResourceLoading_multipleLeading (line 68) | @Test method testResourceLoading_multipleLeading_noPackage (line 74) | @Test method testResourceLoadingNoTrailing (line 80) | @Test method testResourceLoadingNoTrailing_noPackage (line 86) | @Test method testResourceLoading_whiteSpaces (line 92) | @Test method testResourceLoading_whiteSpaces_noPackage (line 98) | @Test method testResourceLoading_multipleInner (line 104) | @Test method testResourceLoading_multipleInner_noPackage (line 110) | @Test method testResourceLoading_multipleTrailing (line 116) | @Test method testResourceLoading_multipleTrailing_noPackage (line 122) | @Test method testResourceLoading_notNormalized (line 128) | @Test method testResourceLoading_notNormalized_noPackage (line 134) | @Test method testResourceLoading_notNormalized_asStream (line 140) | @Test method testResourceLoading_notNormalized_asStream_noPackage (line 146) | @Test method testResourceLoadingObject (line 152) | @Test method testResourceLoadingObject_noPackage (line 158) | @Test method testResourceLoadingThis (line 164) | @Test method testResourceLoadingThis_noPackage (line 170) | @Test method testResourceLoadingGetClass (line 176) | @Test method testResourceLoadingGetClass_noPackage (line 182) | @Test method testResourceLoadingNoClass (line 188) | @Test method testResourceLoadingNoClass_noPackage (line 194) | @Test method testResourceLoadingNotNormalizedNoClass (line 200) | @Test method testResourceLoadingNotNormalizedNoClass_noPackage (line 206) | @Test method testResourceLoadingSpaceInTheResource (line 212) | @Test method testResourceLoadingSpaceInTheResource_noPackage (line 218) | @Test FILE: soap-common/src/test/java/org/reficio/ws/common/XmlComparator.java class XmlComparator (line 38) | public class XmlComparator { method diff (line 43) | public boolean diff(String xml1, String xml2, List diffs) thro... method diff (line 68) | public boolean diff(Node node1, Node node2, List diffs) throws... method diffNodes (line 92) | public boolean diffNodes(Node node1, Node node2, List diffs) t... method diffAttributes (line 124) | public boolean diffAttributes(Node node1, Node node2, List dif... method diffNodeExists (line 158) | public boolean diffNodeExists(Node node1, Node node2, List dif... method diffNodeType (line 180) | public boolean diffNodeType(Node node1, Node node2, List diffs... method diffNodeValue (line 192) | public boolean diffNodeValue(Node node1, Node node2, List diff... method getPath (line 219) | public String getPath(Node node) { FILE: soap-examples/arquillian/src/test/java/org/reficio/ws/arquillian/Greeter.java class Greeter (line 36) | public class Greeter { method getConversionRate (line 38) | public String getConversionRate(String fromCurrency, String toCurrency... method greet (line 57) | public void greet(PrintStream to, String name) { method createGreeting (line 61) | public String createGreeting(String name) { FILE: soap-examples/arquillian/src/test/java/org/reficio/ws/arquillian/GreeterTest.java class GreeterTest (line 41) | @RunWith(Arquillian.class) method createDeployment (line 47) | @Deployment method should_create_greeting (line 57) | @Test method getConversionRateSoapTest (line 70) | @Test FILE: soap-examples/quickstart/src/test/java/org/reficio/ws/quickstart/SoapClientExamplesTest.java class SoapClientExamplesTest (line 46) | public class SoapClientExamplesTest { method startServer (line 56) | @BeforeClass method stopServer (line 67) | @AfterClass method getAutoResponderForTestService (line 72) | public static AutoResponder getAutoResponderForTestService() throws WS... method invoke_tradePriceRequest_generatedMessages (line 84) | @Test method invoke_tradePriceRequest_hardcodedMessages (line 111) | @Test FILE: soap-examples/quickstart/src/test/java/org/reficio/ws/quickstart/SoapServerExamplesTest.java class SoapServerExamplesTest (line 40) | public class SoapServerExamplesTest { method createServer (line 42) | @Test method createServer_registerAutoResponder (line 51) | @Test method createServer_registerCustomResponder (line 67) | @Test FILE: soap-examples/quickstart/src/test/java/org/reficio/ws/quickstart/SpringExampleTest.java class SpringExampleTest (line 36) | @RunWith(SpringJUnit4ClassRunner.class) method testInjection (line 51) | @Test method testServerStarted (line 57) | @Test method testRequestResponse (line 62) | @Test FILE: soap-it/src/test/java/org/reficio/ws/it/AbstractCooperationTest.java class AbstractCooperationTest (line 58) | public abstract class AbstractCooperationTest { method getKeyStoreUrlOne (line 67) | protected static URL getKeyStoreUrlOne() { method getKeyStoreUrlTwo (line 71) | protected static URL getKeyStoreUrlTwo() { method getMultiKeyStoreUrl (line 75) | protected static URL getMultiKeyStoreUrl() { method getKeyStorePassword (line 79) | protected String getKeyStorePassword() { method verifyServiceBehavior (line 83) | protected void verifyServiceBehavior(int testServiceId, ClientBuilder ... method verifyServiceBehavior (line 87) | protected void verifyServiceBehavior(int testServiceId) throws Excepti... method verifyServiceBehavior (line 91) | protected void verifyServiceBehavior(int testServiceId, Boolean postSo... method verifyServiceBehavior (line 113) | protected void verifyServiceBehavior(int testServiceId, Boolean postSo... method testOperation (line 117) | private void testOperation(ClientBuilder clientBuilder, SoapBuilder so... method registerHandler (line 151) | private void registerHandler(SoapServer server, int testServiceId, Wsd... method formatEndpointAddress (line 155) | private String formatEndpointAddress(String contextPath) { method postRequest (line 159) | private String postRequest(SoapClient client, String request) { method postRequest (line 163) | private String postRequest(SoapClient client, String request, String s... class ClientBuilderImpl (line 167) | class ClientBuilderImpl implements ClientBuilder { method buildClient (line 168) | @Override method readKeyStore (line 174) | protected KeyStore readKeyStore(URL keyStoreUrl, String keyStorePasswo... FILE: soap-it/src/test/java/org/reficio/ws/it/HttpCooperationTest.java class HttpCooperationTest (line 36) | public class HttpCooperationTest extends AbstractCooperationTest { method initializeServer (line 41) | @Before method destroyServer (line 49) | @After method testService1 (line 54) | @Test method testService2 (line 59) | @Test method testService3 (line 64) | @Test method testService4 (line 69) | @Test method testService5 (line 74) | @Test method testService6 (line 79) | @Test method testService7 (line 84) | @Test method testService8 (line 89) | @Test method testService9 (line 94) | @Test method testService10 (line 99) | @Test method testService11 (line 104) | @Test method testService12 (line 109) | @Test method testService13 (line 114) | @Test method testService14 (line 119) | @Test method testService15_noSoapAction (line 124) | @Test method testService15_withSoapAction (line 136) | @Test method testService16 (line 141) | @Test method testService17 (line 146) | @Test method testService18 (line 151) | @Test method testService19 (line 156) | @Test method testService20 (line 161) | @Test method testService22 (line 166) | @Test method testService23 (line 171) | @Test method testService25 (line 183) | @Test method testService26 (line 188) | @Test method testService27 (line 196) | public void testService27() throws Exception { FILE: soap-it/src/test/java/org/reficio/ws/it/HttpProxyHttpCooperationTest.java class HttpProxyHttpCooperationTest (line 41) | public class HttpProxyHttpCooperationTest extends AbstractCooperationTest { method initializeServer (line 48) | @Before method destroyServer (line 56) | @After method initProxy (line 61) | public HttpProxyServer initProxy() { method testService1_httpProxy_defaultProxySetting (line 67) | @Test method testService1_httpProxy_directProxy (line 83) | @Test method testService1_httpProxy_noAuthentication (line 99) | @Test method testService1_httpProxy_basicAuthentication_success (line 116) | @Test method testService1_httpProxy_basicAuthentication_failure (line 146) | @Test FILE: soap-it/src/test/java/org/reficio/ws/it/HttpProxyHttpsCooperationTest.java class HttpProxyHttpsCooperationTest (line 42) | public class HttpProxyHttpsCooperationTest extends AbstractCooperationTe... method initializeServer (line 49) | @Before method destroyServer (line 59) | @After method initProxy (line 64) | public HttpProxyServer initProxy() { method testService1_httpProxy_defaultProxySetting (line 70) | @Test method testService1_httpProxy_directProxy (line 92) | @Test method testService1_httpProxy_noAuthentication (line 114) | @Test method testService1_httpProxy_basicAuthentication_success (line 137) | @Test method testService1_httpProxy_basicAuthentication_wrongKeystore_failure (line 172) | @Test method testService1_httpProxy_basicAuthentication_failure (line 210) | @Test FILE: soap-it/src/test/java/org/reficio/ws/it/HttpsCooperationTest.java class HttpsCooperationTest (line 44) | @RunWith(Parameterized.class) method HttpsCooperationTest (line 52) | public HttpsCooperationTest(URL url) { method keyStores (line 56) | @Parameterized.Parameters method initializeServer (line 61) | @Before method destroyServer (line 71) | @After method testService1 (line 76) | @Test method testService2 (line 81) | @Test method testService2_wrongKeyStore_failure (line 86) | @Test class HttpsClientBuilder (line 107) | private class HttpsClientBuilder implements ClientBuilder { method buildClient (line 108) | @Override method client (line 121) | private ClientBuilder client() { FILE: soap-it/src/test/java/org/reficio/ws/it/HttpsProxyHttpCooperationTest.java class HttpsProxyHttpCooperationTest (line 45) | public class HttpsProxyHttpCooperationTest extends AbstractCooperationTe... method initializeServer (line 52) | @Before method destroyServer (line 60) | @After method initProxy (line 65) | public HttpProxyServer initProxy() { method testService1_httpsProxy_defaultProxySetting (line 71) | @Test method testService1_httpsProxy_directProxy (line 87) | @Test method testService1_httpsProxy_noAuthentication (line 103) | @Test method testService1_httpProxy_basicAuthentication_success (line 133) | @Test method testService1_httpProxy_basicAuthentication_failure (line 171) | @Test method testService1_httpProxy_basicAuthentication_wrongKeystore_failure (line 212) | @Test FILE: soap-it/src/test/java/org/reficio/ws/it/HttpsProxyHttpsCooperationTest.java class HttpsProxyHttpsCooperationTest (line 47) | public class HttpsProxyHttpsCooperationTest extends AbstractCooperationT... method initializeServer (line 59) | @Before method destroyServer (line 76) | @After method getProxy (line 87) | public HttpProxyServer getProxy() { method proxySecurity (line 93) | private Security proxySecurity() { method getProxyTunnel (line 101) | private SslTunnel getProxyTunnel() { method endpointSecurity (line 107) | private Security endpointSecurity() { method testService1_httpProxy_noAuthentication (line 127) | @Test method testService1_httpsProxy_basicAuthentication_success (line 141) | @Test method testService1_httpsProxy_basicAuthentication_failure (line 169) | @Test FILE: soap-it/src/test/java/org/reficio/ws/it/util/ClientBuilder.java type ClientBuilder (line 29) | public interface ClientBuilder { method buildClient (line 30) | SoapClient buildClient(String endpointUrl); FILE: soap-it/src/test/java/org/reficio/ws/it/util/SslTunnel.java class SslTunnel (line 44) | public class SslTunnel { method SslTunnel (line 62) | public SslTunnel(KeyStore keyStore, String keyStorePassword, int sourc... method SslTunnel (line 71) | public SslTunnel(KeyStore keyStore, String keyStorePassword, KeyStore ... method start (line 80) | public void start() { class ServerThread (line 112) | class ServerThread extends Thread { method ServerThread (line 116) | public ServerThread(ServerSocket server, AtomicBoolean run) { method run (line 121) | public void run() { method stop (line 141) | public void stop() { class PipeThread (line 154) | class PipeThread extends Thread { method PipeThread (line 158) | public PipeThread(Socket client, AtomicBoolean run) { method run (line 163) | public void run() { FILE: soap-it/src/test/java/org/reficio/ws/it/util/TestUtils.java class TestUtils (line 42) | public class TestUtils { method createParserForService (line 46) | public static Wsdl createParserForService(int testServiceId) throws WS... method formatContextPath (line 54) | public static String formatContextPath(int testServiceId, QName bindin... method getTestServiceFolderPath (line 58) | public static String getTestServiceFolderPath(int testServiceId) { method formatServiceId (line 63) | public static String formatServiceId(int testServiceId) { method registerService (line 67) | public static void registerService(SoapServer server, int testServiceI... method registerService (line 72) | public static void registerService(SoapServer server, int testServiceI... method registerAutoResponderForAllServiceBindings (line 76) | public static void registerAutoResponderForAllServiceBindings(SoapServ... FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/AbstractSoapVersion.java class AbstractSoapVersion (line 54) | abstract class AbstractSoapVersion implements SoapVersion { method validateSoapEnvelope (line 57) | @SuppressWarnings("unchecked") method getSoapEnvelopeSchemaLoader (line 88) | protected abstract SchemaTypeLoader getSoapEnvelopeSchemaLoader(); method shouldIgnore (line 90) | public boolean shouldIgnore(XmlValidationError error) { method getFaultType (line 103) | public abstract SchemaType getFaultType(); method getEnvelopeType (line 105) | public abstract SchemaType getEnvelopeType(); FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/Constants.java type Constants (line 48) | interface Constants { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/DefinitionLoader.java type DefinitionLoader (line 43) | interface DefinitionLoader extends SchemaLoader { method setProgressInfo (line 45) | void setProgressInfo(String info); method isAborted (line 47) | boolean isAborted(); method abort (line 49) | boolean abort(); method setNewBaseURI (line 51) | void setNewBaseURI(String uri); method getFirstNewURI (line 53) | String getFirstNewURI(); FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/SampleXmlUtil.java class SampleXmlUtil (line 60) | class SampleXmlUtil { method SampleXmlUtil (line 82) | public SampleXmlUtil(boolean soapEnc, SoapContext context) { method isSoapEnc (line 92) | public boolean isSoapEnc() { method createSample (line 96) | public String createSample(SchemaType sType) { method createSampleForType (line 126) | public void createSampleForType(SchemaType stype, XmlCursor xmlc) { method processSimpleType (line 180) | private void processSimpleType(SchemaType stype, XmlCursor xmlc) { method sampleDataForSimpleType (line 192) | private String sampleDataForSimpleType(SchemaType sType) { method pick (line 376) | private int pick(int n) { method pick (line 380) | private String pick(String[] a) { method pick (line 384) | private String pick(String[] a, int count) { method pickDigits (line 401) | @SuppressWarnings("unused") method pickLength (line 409) | private int pickLength(SchemaType sType) { method formatToLength (line 441) | private String formatToLength(String s, SchemaType sType) { method formatDecimal (line 466) | private String formatDecimal(String start, SchemaType sType) { method formatDuration (line 569) | private String formatDuration(SchemaType sType) { method formatDate (line 676) | private String formatDate(SchemaType sType) { method closestBuiltin (line 873) | private SchemaType closestBuiltin(SchemaType sType) { method crackQName (line 882) | public static QName crackQName(String qName) { method processParticle (line 902) | private void processParticle(SchemaParticle sp, XmlCursor xmlc, boolea... method determineMinMaxForSample (line 929) | private int determineMinMaxForSample(SchemaParticle sp, XmlCursor xmlc) { method getItemNameOrType (line 972) | @SuppressWarnings("unused") method processElement (line 983) | private void processElement(SchemaParticle sp, XmlCursor xmlc, boolean... method moveToken (line 1017) | @SuppressWarnings("unused") method formatQName (line 1028) | private static final String formatQName(XmlCursor xmlc, QName qName) { method processAttributes (line 1050) | private void processAttributes(SchemaType stype, XmlCursor xmlc) { method processSequence (line 1097) | private void processSequence(SchemaParticle sp, XmlCursor xmlc, boolea... method processChoice (line 1108) | private void processChoice(SchemaParticle sp, XmlCursor xmlc, boolean ... method processAll (line 1118) | private void processAll(SchemaParticle sp, XmlCursor xmlc, boolean mix... method processWildCard (line 1130) | private void processWildCard(SchemaParticle sp, XmlCursor xmlc, boolea... method getClosestName (line 1140) | @SuppressWarnings("unused") method printParticleType (line 1148) | private String printParticleType(int particleType) { method addElementTypeAndRestricionsComment (line 1177) | private void addElementTypeAndRestricionsComment(SchemaLocalElement el... method setTypeComment (line 1203) | public void setTypeComment(boolean b) { method setIgnoreOptional (line 1207) | public void setIgnoreOptional(boolean b) { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/SchemaDefinitionWrapper.java class SchemaDefinitionWrapper (line 52) | class SchemaDefinitionWrapper { method SchemaDefinitionWrapper (line 58) | public SchemaDefinitionWrapper(Definition definition, String schemaURL) { method getSchemaTypeLoader (line 63) | public SchemaTypeLoader getSchemaTypeLoader() { method getSchemaTypeSystem (line 67) | public SchemaTypeSystem getSchemaTypeSystem() { method hasSchemaTypes (line 71) | public boolean hasSchemaTypes() { method getDefinedNamespaces (line 75) | public Collection getDefinedNamespaces() throws Exception { method getTargetNamespace (line 88) | public String getTargetNamespace() { method findType (line 92) | public SchemaType findType(QName typeName) { method loadSchemaTypes (line 96) | public void loadSchemaTypes(DefinitionLoader loader) { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/SchemaLoader.java type SchemaLoader (line 44) | interface SchemaLoader { method loadXmlObject (line 45) | XmlObject loadXmlObject(String wsdlUrl, XmlOptions options) throws Exc... method getBaseURI (line 47) | String getBaseURI(); FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/SchemaUtils.java class SchemaUtils (line 60) | class SchemaUtils { method loadResoruce (line 70) | public static URL loadResoruce(String resourceName) { method initDefaultSchemas (line 75) | public static void initDefaultSchemas() { method loadDefaultSchema (line 94) | private static void loadDefaultSchema(URL url) throws Exception { method loadSchemaTypes (line 109) | public static SchemaTypeSystem loadSchemaTypes(String wsdlUrl, SchemaL... method buildSchemaTypes (line 119) | public static SchemaTypeSystem buildSchemaTypes(List schema... method toNextContainer (line 205) | public static boolean toNextContainer(XmlCursor cursor) { method getTargetNamespace (line 212) | public static String getTargetNamespace(XmlObject s) { method getSchemas (line 216) | public static Map getSchemas(String wsdlUrl, Schema... method getSchemas (line 226) | public static void getSchemas(String wsdlUrl, Map e... method getDefinitionParts (line 377) | public static void getDefinitionParts(String origWsdlUrl, Map extractNamespaces(SchemaTypeSystem sc... method removeImports (line 517) | public static void removeImports(XmlObject xmlObject) throws XmlExcept... FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/SoapLegacyFacade.java class SoapLegacyFacade (line 38) | public class SoapLegacyFacade { type Soap (line 40) | public static enum Soap {SOAP_1_1, SOAP_1_2} method SoapLegacyFacade (line 46) | public SoapLegacyFacade(URL wsdlUrl) throws WSDLException { method buildSoapMessageFromInput (line 50) | public String buildSoapMessageFromInput(Binding binding, BindingOperat... method buildSoapMessageFromOutput (line 58) | public String buildSoapMessageFromOutput(Binding binding, BindingOpera... method validateSoapRequestMessage (line 66) | public void validateSoapRequestMessage(Binding binding, BindingOperati... method validateSoapResponseMessage (line 74) | public void validateSoapResponseMessage(Binding binding, BindingOperat... method buildFault (line 82) | public String buildFault(String code, String message, Binding binding,... method buildEmptyFault (line 86) | public String buildEmptyFault(Binding binding, SoapContext context) { method buildEmptyMessage (line 90) | public String buildEmptyMessage(Binding binding, SoapContext context) { method saveWsdl (line 94) | public URL saveWsdl(String rootFileName, File folder) { method saveWsdl (line 98) | public static URL saveWsdl(URL wsdlUrl, String rootFileName, File fold... method getBindingByName (line 106) | public Binding getBindingByName(QName bindingName) { method getBindingNames (line 110) | public List getBindingNames() { method buildEmptyMessage (line 114) | public static String buildEmptyMessage(SoapVersion soapVersion, SoapCo... method buildEmptyFault (line 118) | public static String buildEmptyFault(SoapVersion soapVersion, SoapCont... method buildFault (line 122) | public static String buildFault(String code, String message, SoapVersi... method transformSoapVersion (line 126) | private static SoapVersion transformSoapVersion(Soap soapVersion) { method buildEmptyMessage (line 134) | public static String buildEmptyMessage(Soap version, SoapContext conte... method buildEmptyFault (line 138) | public static String buildEmptyFault(Soap version, SoapContext context) { method buildFault (line 142) | public static String buildFault(Soap version, String code, String mess... method isRpc (line 146) | public static boolean isRpc(Binding binding) { method getSoapEndpoint (line 162) | public static String getSoapEndpoint(Port port) { method getServices (line 166) | @SuppressWarnings("unchecked") method isOutputSoapEncoded (line 171) | public boolean isOutputSoapEncoded(BindingOperation operation) { method isInputSoapEncoded (line 175) | public boolean isInputSoapEncoded(BindingOperation operation) { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/SoapMessageBuilder.java class SoapMessageBuilder (line 76) | @ThreadSafe method SoapMessageBuilder (line 95) | public SoapMessageBuilder(URL wsdlUrl) throws WSDLException { method createAndSave (line 115) | public static SoapMessageBuilder createAndSave(URL wsdlUrl, File targe... method saveDefinition (line 125) | private static void saveDefinition(String fileBaseName, Definition def... method getSavedWsdlUrl (line 133) | private static URL getSavedWsdlUrl(String fileBaseName, File targetFol... method saveWsdl (line 148) | public URL saveWsdl(String fileBaseName, File targetFolder) { method saveWsdl (line 161) | public static URL saveWsdl(String fileBaseName, URL wsdlUrl, File targ... method buildEmptyMessage (line 172) | public String buildEmptyMessage(QName bindingQName, SoapContext contex... method buildEmptyMessage (line 176) | public String buildEmptyMessage(Binding binding, SoapContext context) { method buildEmptyMessage (line 180) | public static String buildEmptyMessage(SoapVersion soapVersion, SoapCo... method buildFault (line 188) | public static String buildFault(String faultcode, String faultstring, ... method buildFault (line 204) | public String buildFault(String faultcode, String faultstring, QName b... method buildFault (line 208) | public String buildFault(String faultcode, String faultstring, Binding... method buildEmptyFault (line 212) | public String buildEmptyFault(QName bindingQName, SoapContext context) { method buildEmptyFault (line 216) | public String buildEmptyFault(Binding binding, SoapContext context) { method buildEmptyFault (line 220) | public static String buildEmptyFault(SoapVersion soapVersion, SoapCont... method buildSoapMessageFromInput (line 229) | public String buildSoapMessageFromInput(Binding binding, BindingOperat... method buildSoapMessageFromOutput (line 277) | public String buildSoapMessageFromOutput(Binding binding, BindingOpera... method getDefinition (line 329) | public Definition getDefinition() { method getSchemaDefinitionWrapper (line 333) | public SchemaDefinitionWrapper getSchemaDefinitionWrapper() { method getOperationByName (line 337) | public BindingOperation getOperationByName(QName bindingName, String o... method getBindingByName (line 349) | public Binding getBindingByName(QName bindingName) { method getBindingNames (line 357) | public List getBindingNames() { method getSoapVersion (line 361) | public static SoapVersion getSoapVersion(Binding binding) { method addHeaders (line 386) | private void addHeaders(List headers, SoapVersio... method buildDocumentResponse (line 413) | private void buildDocumentResponse(BindingOperation bindingOperation, ... method buildDocumentRequest (line 430) | private void buildDocumentRequest(BindingOperation bindingOperation, X... method createElementForPart (line 446) | private void createElementForPart(Part part, XmlCursor cursor, SampleX... method buildRpcRequest (line 482) | private void buildRpcRequest(BindingOperation bindingOperation, SoapVe... method buildRpcResponse (line 546) | private void buildRpcResponse(BindingOperation bindingOperation, SoapV... method buildEmptyFault (line 609) | private static String buildEmptyFault(SampleXmlUtil generator, SoapVer... FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/SoapVersion.java type SoapVersion (line 54) | interface SoapVersion { method getEnvelopeQName (line 58) | public QName getEnvelopeQName(); method getBodyQName (line 60) | public QName getBodyQName(); method getHeaderQName (line 62) | public QName getHeaderQName(); method validateSoapEnvelope (line 64) | public void validateSoapEnvelope(String soapMessage, List er... method getContentTypeHttpHeader (line 66) | public String getContentTypeHttpHeader(String encoding, String soapAct... method getEnvelopeNamespace (line 68) | public String getEnvelopeNamespace(); method getFaultDetailNamespace (line 70) | public String getFaultDetailNamespace(); method getEncodingNamespace (line 72) | public String getEncodingNamespace(); method getSoapEncodingSchema (line 74) | public XmlObject getSoapEncodingSchema() throws XmlException, IOExcept... method getSoapEnvelopeSchema (line 76) | public XmlObject getSoapEnvelopeSchema() throws XmlException, IOExcept... method shouldIgnore (line 84) | public boolean shouldIgnore(XmlValidationError xmlError); method getContentType (line 86) | public String getContentType(); method getEnvelopeType (line 88) | public SchemaType getEnvelopeType(); method getFaultType (line 90) | public SchemaType getFaultType(); method getName (line 92) | public String getName(); class Utils (line 100) | public static class Utils { method getSoapVersionForContentType (line 101) | public static SoapVersion getSoapVersionForContentType(String conten... method getSoapActionHeader (line 114) | public String getSoapActionHeader(String soapAction); FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/SoapVersion11.java class SoapVersion11 (line 57) | class SoapVersion11 extends AbstractSoapVersion { method SoapVersion11 (line 71) | private SoapVersion11() { method getEnvelopeType (line 97) | public SchemaType getEnvelopeType() { method getEnvelopeNamespace (line 101) | public String getEnvelopeNamespace() { method getEncodingNamespace (line 105) | public String getEncodingNamespace() { method getSoapEncodingSchema (line 109) | public XmlObject getSoapEncodingSchema() throws XmlException, IOExcept... method getSoapEnvelopeSchema (line 113) | public XmlObject getSoapEnvelopeSchema() throws XmlException, IOExcept... method toString (line 117) | public String toString() { method getContentTypeHttpHeader (line 121) | public String getContentTypeHttpHeader(String encoding, String soapAct... method getSoapActionHeader (line 128) | public String getSoapActionHeader(String soapAction) { method getContentType (line 138) | public String getContentType() { method getBodyQName (line 142) | public QName getBodyQName() { method getEnvelopeQName (line 146) | public QName getEnvelopeQName() { method getHeaderQName (line 150) | public QName getHeaderQName() { method getSoapEnvelopeSchemaLoader (line 154) | protected SchemaTypeLoader getSoapEnvelopeSchemaLoader() { method getFaultType (line 158) | public SchemaType getFaultType() { method getName (line 162) | public String getName() { method getFaultDetailNamespace (line 166) | public String getFaultDetailNamespace() { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/SoapVersion12.java class SoapVersion12 (line 59) | class SoapVersion12 extends AbstractSoapVersion { method SoapVersion12 (line 71) | private SoapVersion12() { method getEncodingNamespace (line 87) | public String getEncodingNamespace() { method getSoapEncodingSchema (line 91) | public XmlObject getSoapEncodingSchema() throws XmlException, IOExcept... method getSoapEnvelopeSchema (line 95) | public XmlObject getSoapEnvelopeSchema() throws XmlException, IOExcept... method getEnvelopeNamespace (line 99) | public String getEnvelopeNamespace() { method getEnvelopeType (line 103) | public SchemaType getEnvelopeType() { method toString (line 107) | public String toString() { method quote (line 111) | public static String quote(String str) { method getContentTypeHttpHeader (line 121) | public String getContentTypeHttpHeader(String encoding, String soapAct... method getSoapActionHeader (line 133) | public String getSoapActionHeader(String soapAction) { method getContentType (line 138) | public String getContentType() { method getBodyQName (line 142) | public QName getBodyQName() { method getEnvelopeQName (line 146) | public QName getEnvelopeQName() { method getHeaderQName (line 150) | public QName getHeaderQName() { method getSoapEnvelopeSchemaLoader (line 154) | protected SchemaTypeLoader getSoapEnvelopeSchemaLoader() { method getFaultQName (line 158) | public static QName getFaultQName() { method getFaultType (line 162) | public SchemaType getFaultType() { method getName (line 166) | public String getName() { method getFaultDetailNamespace (line 170) | public String getFaultDetailNamespace() { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/UrlSchemaLoader.java class UrlSchemaLoader (line 47) | class UrlSchemaLoader implements SchemaLoader, DefinitionLoader { method UrlSchemaLoader (line 50) | public UrlSchemaLoader(String baseURI) { method loadXmlObject (line 54) | public XmlObject loadXmlObject(String wsdlUrl, XmlOptions options) thr... method getBaseURI (line 58) | public String getBaseURI() { method setProgressInfo (line 62) | public void setProgressInfo(String info) { method isAborted (line 66) | public boolean isAborted() { method abort (line 70) | public boolean abort() { method setNewBaseURI (line 74) | public void setNewBaseURI(String uri) { method getFirstNewURI (line 78) | public String getFirstNewURI() { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/WsdlContext.java class WsdlContext (line 32) | class WsdlContext { method WsdlContext (line 37) | WsdlContext(SoapMessageBuilder builder, Binding binding) { method getDefinition (line 42) | Definition getDefinition() { method getSoapVersion (line 46) | SoapVersion getSoapVersion() { method hasSchemaTypes (line 50) | boolean hasSchemaTypes() { method getSchemaTypeLoader (line 54) | SchemaTypeLoader getSchemaTypeLoader() { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/WsdlSettings.java type WsdlSettings (line 47) | interface WsdlSettings { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/WsdlUtils.java class WsdlUtils (line 66) | @SuppressWarnings("unchecked") method getExtensiblityElement (line 70) | public static T getExtensiblityElemen... method getExtensiblityElements (line 75) | public static List getExtensiblity... method findBindingForOperation (line 89) | public static Binding findBindingForOperation(Definition definition, B... method isInputSoapEncoded (line 122) | public static boolean isInputSoapEncoded(BindingOperation bindingOpera... method isOutputSoapEncoded (line 152) | public static boolean isOutputSoapEncoded(BindingOperation bindingOper... method isRpc (line 182) | public static boolean isRpc(Definition definition, BindingOperation bi... method isRpc (line 205) | public static boolean isRpc(Binding binding) { method isOneWay (line 221) | public static boolean isOneWay(BindingOperation operation) { method getInputParts (line 230) | public static Part[] getInputParts(BindingOperation operation) { method isAttachmentInputPart (line 273) | public static boolean isAttachmentInputPart(Part part, BindingOperatio... method isAttachmentOutputPart (line 277) | public static boolean isAttachmentOutputPart(Part part, BindingOperati... method getOutputMultipartContent (line 281) | public static MIMEContent[] getOutputMultipartContent(Part part, Bindi... method getInputMultipartContent (line 292) | public static MIMEContent[] getInputMultipartContent(Part part, Bindin... method getContentParts (line 303) | public static MIMEContent[] getContentParts(Part part, MIMEMultipartRe... method getFaultParts (line 323) | public static Part[] getFaultParts(BindingOperation bindingOperation, ... method getOutputParts (line 354) | public static Part[] getOutputParts(BindingOperation operation) { method getSoapEndpoint (line 400) | public static String getSoapEndpoint(Port port) { method replaceSoapEndpoint (line 425) | public static boolean replaceSoapEndpoint(Port port, String endpoint) { method getSoapBodyNamespace (line 442) | public static String getSoapBodyNamespace(List list) { type SoapHeader (line 460) | public interface SoapHeader { method getMessage (line 461) | public QName getMessage(); method getPart (line 463) | public String getPart(); class Soap11Header (line 472) | public static class Soap11Header implements SoapHeader { method Soap11Header (line 475) | public Soap11Header(SOAPHeader soapHeader) { method getMessage (line 479) | public QName getMessage() { method getPart (line 483) | public String getPart() { class Soap12Header (line 494) | public static class Soap12Header implements SoapHeader { method Soap12Header (line 497) | public Soap12Header(SOAP12Header soapHeader) { method getMessage (line 501) | public QName getMessage() { method getPart (line 505) | public String getPart() { method getSoapHeaders (line 510) | public static List getSoapHeaders(List list) { method findBindingOperation (line 529) | public static BindingOperation findBindingOperation(Binding binding, S... method getTargetNamespace (line 551) | public static String getTargetNamespace(Definition definition) { FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/WsdlValidator.java class WsdlValidator (line 42) | class WsdlValidator { method WsdlValidator (line 47) | WsdlValidator(SoapMessageBuilder builder, Binding binding) { method assertRequest (line 51) | List assertRequest(BindingOperation bindingOperation, ... method assertResponse (line 76) | List assertResponse(BindingOperation bindingOperation,... method validateXml (line 107) | @SuppressWarnings("unchecked") method convertErrors (line 124) | private List convertErrors(List errors) { method validateMessage (line 156) | @SuppressWarnings("unchecked") method validateDocLiteral (line 199) | private void validateDocLiteral(BindingOperation bindingOperation, Par... method validateMessageBody (line 270) | private void validateMessageBody(List errors, SchemaType typ... method getLine (line 349) | private int getLine(XmlObject object) { method validateRpcLiteral (line 361) | private void validateRpcLiteral(BindingOperation bindingOperation, Par... method getRpcBodyPart (line 427) | private XmlObject[] getRpcBodyPart(BindingOperation bindingOperation, ... method validateSoapFault (line 444) | @SuppressWarnings("unchecked") FILE: soap-legacy/src/main/java/org/reficio/ws/legacy/XmlUtils.java class XmlUtils (line 67) | @SuppressWarnings("deprecation") method parse (line 72) | static synchronized public Document parse(InputStream in) { method parse (line 82) | static synchronized public Document parse(String fileName) throws IOEx... method parse (line 93) | static synchronized public Document parse(InputSource inputSource) thr... method getChildElements (line 101) | public static NodeList getChildElements(Element elm) { class ElementNodeList (line 114) | private final static class ElementNodeList implements NodeList { method ElementNodeList (line 117) | public ElementNodeList(List list) { method getLength (line 121) | public int getLength() { method item (line 125) | public Node item(int index) { method getChildElementText (line 130) | public static String getChildElementText(Element elm, String name) { method getFirstChildElement (line 135) | public static Element getFirstChildElement(Element elm) { method getElementText (line 139) | static public String getElementText(Element elm) { method getFragmentText (line 147) | static public String getFragmentText(DocumentFragment elm) { method getChildElementText (line 155) | public static String getChildElementText(Element elm, String name, Str... method getNodeValue (line 160) | static public String getNodeValue(Node node) { method getFirstChildElement (line 172) | public static Element getFirstChildElement(Element elm, String name) { method getFirstChildElementIgnoreCase (line 186) | public static Element getFirstChildElementIgnoreCase(Element elm, Stri... method getFirstChildElementNS (line 200) | public static Element getFirstChildElementNS(Element elm, String tns, ... method removeUnneccessaryNamespaces (line 223) | public static String removeUnneccessaryNamespaces(String xml) { method ensureDocumentBuilder (line 274) | private static DocumentBuilder ensureDocumentBuilder() { method createXmlObject (line 289) | public static XmlObject createXmlObject(String input, XmlOptions xmlOp... method createXmlObject (line 293) | public static XmlObject createXmlObject(URL input, XmlOptions xmlOptio... method createXmlObject (line 302) | public static XmlObject createXmlObject(String input) throws XmlExcept... method createXmlObject (line 306) | public static XmlObject createXmlObject(URL input) throws XmlException { method setElementText (line 316) | static public void setElementText(Element elm, String text) { method getQName (line 332) | public static QName getQName(XmlObject contentElement) { method getQName (line 336) | public static QName getQName(Node node) { method parseXml (line 345) | public static Document parseXml(String xmlString) throws IOException { method setNodeValue (line 349) | public static boolean setNodeValue(Node domNode, String string) { method declareXPathNamespaces (line 381) | public static String declareXPathNamespaces(XmlObject xmlObject) { method setXPathContent (line 428) | public static String setXPathContent(String xmlText, String xpath, Str... method serializePretty (line 450) | public static void serializePretty(XmlObject xmlObject, Writer writer)... FILE: soap-server/src/main/java/org/reficio/ws/server/OperationNotFoundException.java class OperationNotFoundException (line 27) | public class OperationNotFoundException extends SoapServerException { method OperationNotFoundException (line 28) | public OperationNotFoundException(String message) { method OperationNotFoundException (line 32) | public OperationNotFoundException(String message, Throwable cause) { method OperationNotFoundException (line 36) | public OperationNotFoundException(Throwable cause) { FILE: soap-server/src/main/java/org/reficio/ws/server/ServiceRegistrationException.java class ServiceRegistrationException (line 27) | public class ServiceRegistrationException extends SoapServerException { method ServiceRegistrationException (line 28) | public ServiceRegistrationException(String message) { method ServiceRegistrationException (line 32) | public ServiceRegistrationException(String message, Throwable cause) { method ServiceRegistrationException (line 36) | public ServiceRegistrationException(Throwable cause) { FILE: soap-server/src/main/java/org/reficio/ws/server/SoapServerException.java class SoapServerException (line 29) | public class SoapServerException extends SoapException { method SoapServerException (line 30) | public SoapServerException(String message) { method SoapServerException (line 34) | public SoapServerException(String message, Throwable cause) { method SoapServerException (line 38) | public SoapServerException(Throwable cause) { FILE: soap-server/src/main/java/org/reficio/ws/server/core/SoapServer.java class SoapServer (line 58) | @ThreadSafe method start (line 92) | public void start() { method isRunning (line 100) | public boolean isRunning() { method isStarted (line 104) | public boolean isStarted() { method isStarting (line 108) | public boolean isStarting() { method isStopping (line 112) | public boolean isStopping() { method isStopped (line 116) | public boolean isStopped() { method isNotRunning (line 120) | public boolean isNotRunning() { method isFailed (line 124) | public boolean isFailed() { method stop (line 131) | public void stop() { method destroy (line 142) | public void destroy() { method registerRequestResponder (line 154) | public void registerRequestResponder(String contextPath, RequestRespon... method unregisterRequestResponder (line 168) | public void unregisterRequestResponder(String contextPath) throws Serv... method getUrl (line 174) | private String getUrl(String contextPath) { method validateUrl (line 179) | private void validateUrl(String contextPath) { method getRegisteredContextPaths (line 192) | public List getRegisteredContextPaths() { method configure (line 199) | private void configure() { method configureParentContext (line 205) | private void configureParentContext() { method configureConnectors (line 216) | private void configureConnectors() { method configureHttpConnector (line 230) | private SelectChannelConnector configureHttpConnector(SelectChannelCon... method configureHttpsConnector (line 237) | private SslSelectChannelConnector configureHttpsConnector(SslSelectCha... method configureGenericConnector (line 247) | private AbstractConnector configureGenericConnector(AbstractConnector ... method configureWebContext (line 253) | private void configureWebContext() { method getServletContext (line 265) | private ServletContext getServletContext() { method buildProperties (line 274) | private Properties buildProperties() { method SoapServer (line 285) | private SoapServer() { class Builder (line 291) | public static class Builder { method httpPort (line 298) | public Builder httpPort(int value) { method httpsPort (line 309) | public Builder httpsPort(int value) { method connectionMaxIdleTimeInSeconds (line 320) | public Builder connectionMaxIdleTimeInSeconds(int value) { method acceptorThreads (line 330) | public Builder acceptorThreads(int value) { method coreThreads (line 340) | public Builder coreThreads(int value) { method maxThreads (line 350) | public Builder maxThreads(int value) { method threadKeepAliveTimeInSeconds (line 360) | public Builder threadKeepAliveTimeInSeconds(int value) { method keyStoreUrl (line 371) | public Builder keyStoreUrl(URL value) { method keyStoreType (line 381) | public Builder keyStoreType(String value) { method keyStorePassword (line 391) | public Builder keyStorePassword(String value) { method reuseAddress (line 400) | public Builder reuseAddress(boolean value) { method build (line 410) | public SoapServer build() { method builder (line 419) | public static Builder builder() { FILE: soap-server/src/main/java/org/reficio/ws/server/core/SoapServerConstants.java class SoapServerConstants (line 25) | final class SoapServerConstants { method SoapServerConstants (line 27) | private SoapServerConstants() { FILE: soap-server/src/main/java/org/reficio/ws/server/core/SoapServerFactory.java class SoapServerFactory (line 33) | public class SoapServerFactory { method setHttpPort (line 49) | public void setHttpPort(Integer value) { method setHttpsPort (line 54) | public void setHttpsPort(Integer value) { method setConnectionMaxIdleTimeInSeconds (line 59) | public void setConnectionMaxIdleTimeInSeconds(Integer value) { method setAcceptorThreads (line 64) | public void setAcceptorThreads(Integer value) { method setCoreThreads (line 69) | public void setCoreThreads(Integer value) { method setMaxThreads (line 74) | public void setMaxThreads(Integer value) { method setThreadKeepAliveTimeInSeconds (line 79) | public void setThreadKeepAliveTimeInSeconds(Integer value) { method setKeyStoreUrl (line 84) | public void setKeyStoreUrl(URL value) { method setKeyStoreType (line 89) | public void setKeyStoreType(String value) { method setKeyStorePassword (line 94) | public void setKeyStorePassword(String value) { method setReuseAddress (line 98) | public void setReuseAddress(Boolean value) { method setResponders (line 103) | public void setResponders(Map responders) { method create (line 108) | public SoapServer create() { method configureResponders (line 121) | private void configureResponders(SoapServer server) { method configureThreadPools (line 127) | private void configureThreadPools(SoapServer.Builder builder) { method configureTimeouts (line 139) | private void configureTimeouts(SoapServer.Builder builder) { method configureConnection (line 148) | private void configureConnection(SoapServer.Builder builder) { method configureKeyStore (line 160) | private void configureKeyStore(SoapServer.Builder builder) { method main (line 170) | public static void main(String[] args) { FILE: soap-server/src/main/java/org/reficio/ws/server/endpoint/ContextEndpointAdapter.java class ContextEndpointAdapter (line 35) | public class ContextEndpointAdapter extends PayloadEndpointAdapter { method invoke (line 37) | @Override FILE: soap-server/src/main/java/org/reficio/ws/server/endpoint/ContextPayloadEndpoint.java type ContextPayloadEndpoint (line 30) | public interface ContextPayloadEndpoint extends PayloadEndpoint { method invoke (line 42) | Source invoke(MessageContext messageContext); FILE: soap-server/src/main/java/org/reficio/ws/server/endpoint/GenericContextDomEndpoint.java class GenericContextDomEndpoint (line 47) | public class GenericContextDomEndpoint implements ContextPayloadEndpoint... method GenericContextDomEndpoint (line 56) | public GenericContextDomEndpoint() { method invoke (line 65) | @Override method getRequestResponderBySessionRequestContextPath (line 76) | private RequestResponder getRequestResponderBySessionRequestContextPat... method getRequestResponderByRequestContextPath (line 81) | private RequestResponder getRequestResponderByRequestContextPath(Strin... method noResponderForRequestFound (line 85) | private boolean noResponderForRequestFound(RequestResponder responder) { method handleNoResponderFault (line 92) | private Source handleNoResponderFault() { method getHttpServletRequest (line 97) | private HttpServletRequest getHttpServletRequest() { method getRequestContextPath (line 101) | private String getRequestContextPath() { method registerRequestResponder (line 112) | public void registerRequestResponder(String contextPath, RequestRespon... method unregisterRequestResponder (line 124) | public void unregisterRequestResponder(String contextPath) throws Serv... method getRegisteredContextPaths (line 133) | public Enumeration getRegisteredContextPaths() { method afterPropertiesSet (line 137) | @Override method invoke (line 146) | @Override FILE: soap-server/src/main/java/org/reficio/ws/server/endpoint/GenericEndpointMapping.java class GenericEndpointMapping (line 30) | public class GenericEndpointMapping extends AbstractEndpointMapping { method getEndpointInternal (line 37) | @Override method getGenericEndpoint (line 42) | public ContextPayloadEndpoint getGenericEndpoint() { method setGenericEndpoint (line 46) | public void setGenericEndpoint(ContextPayloadEndpoint genericEndpoint) { FILE: soap-server/src/main/java/org/reficio/ws/server/endpoint/GenericSoapMessage.java class GenericSoapMessage (line 39) | public class GenericSoapMessage implements WebServiceMessage { method GenericSoapMessage (line 46) | public GenericSoapMessage(Source source) { method getPayloadSource (line 50) | @Override method getPayloadResult (line 55) | @Override method writeTo (line 60) | @Override FILE: soap-server/src/main/java/org/reficio/ws/server/matcher/AggregatingVisitor.java class AggregatingVisitor (line 30) | public abstract class AggregatingVisitor implements BindingOperationV... method addResult (line 38) | public void addResult(T result) { method getUniqueResult (line 46) | public T getUniqueResult() { method getResults (line 58) | public Set getResults() { FILE: soap-server/src/main/java/org/reficio/ws/server/matcher/BindingOperationVisitor.java type BindingOperationVisitor (line 29) | public interface BindingOperationVisitor { method visit (line 34) | void visit(BindingOperation operation); FILE: soap-server/src/main/java/org/reficio/ws/server/matcher/SoapOperationMatcher.java class SoapOperationMatcher (line 58) | public class SoapOperationMatcher { method SoapOperationMatcher (line 63) | public SoapOperationMatcher(Binding binding) { method isRpc (line 71) | protected boolean isRpc() { method isDocument (line 78) | protected boolean isDocument() { method getInvokedOperation (line 96) | public BindingOperation getInvokedOperation(SoapMessage message) throw... method getOperationBySoapAction (line 127) | private BindingOperation getOperationBySoapAction(SoapMessage message) { method getOperationByRootQName (line 146) | private BindingOperation getOperationByRootQName(Set rootNodes) ... method matchElementNameToOperationName (line 158) | private BindingOperation matchElementNameToOperationName(final QName e... method getOperationByInputTypes (line 182) | @SuppressWarnings("unchecked") method getOperationByInputNames (line 217) | @SuppressWarnings("unchecked") method visitOperation (line 233) | @SuppressWarnings("unchecked") method isRequestResponseOperation (line 245) | public boolean isRequestResponseOperation(BindingOperation operation) { FILE: soap-server/src/main/java/org/reficio/ws/server/protocol/GenericSoapMessageFactory.java class GenericSoapMessageFactory (line 40) | public class GenericSoapMessageFactory implements SoapMessageFactory, In... method GenericSoapMessageFactory (line 57) | public GenericSoapMessageFactory() { method setMessageFactoryForRequestContext (line 63) | private void setMessageFactoryForRequestContext(SaajSoapMessageFactory... method getMessageFactoryForRequestContext (line 68) | private SaajSoapMessageFactory getMessageFactoryForRequestContext() { method setSoapVersion (line 74) | public void setSoapVersion(SoapVersion version) { method setSoapProtocolChooser (line 78) | public void setSoapProtocolChooser(SoapProtocolChooser soapProtocolCho... method configureFactory (line 82) | private void configureFactory(SaajSoapMessageFactory factory, SoapVers... method afterPropertiesSet (line 87) | @Override method createWebServiceMessage (line 93) | @Override method createWebServiceMessage (line 98) | @Override FILE: soap-server/src/main/java/org/reficio/ws/server/protocol/SimpleSoapProtocolChooser.java class SimpleSoapProtocolChooser (line 33) | public class SimpleSoapProtocolChooser implements SoapProtocolChooser { method useSoap11 (line 43) | @Override method useSoap12 (line 65) | @Override FILE: soap-server/src/main/java/org/reficio/ws/server/protocol/SoapProtocolChooser.java type SoapProtocolChooser (line 33) | public interface SoapProtocolChooser { method useSoap11 (line 35) | boolean useSoap11(TransportInputStream transportInputStream) throws IO... method useSoap12 (line 37) | boolean useSoap12(TransportInputStream transportInputStream) throws IO... FILE: soap-server/src/main/java/org/reficio/ws/server/responder/AbstractResponder.java class AbstractResponder (line 42) | public abstract class AbstractResponder implements RequestResponder { method getBuilder (line 48) | public SoapBuilder getBuilder() { method AbstractResponder (line 57) | public AbstractResponder(SoapBuilder builder) { method respond (line 71) | @Override method respond (line 95) | public abstract Source respond(SoapOperation invokedOperation, SoapMes... FILE: soap-server/src/main/java/org/reficio/ws/server/responder/AutoResponder.java class AutoResponder (line 39) | public class AutoResponder extends AbstractResponder { method AutoResponder (line 48) | public AutoResponder(SoapBuilder builder) { method AutoResponder (line 60) | public AutoResponder(SoapBuilder builder, SoapContext context) { method respond (line 65) | @Override FILE: soap-server/src/main/java/org/reficio/ws/server/responder/RequestResponder.java type RequestResponder (line 31) | public interface RequestResponder { method respond (line 54) | Source respond(SoapMessage request); FILE: soap-server/src/test/java/org/reficio/ws/server/PasswordLessKeystoreTest.java class PasswordLessKeystoreTest (line 57) | @Ignore // not supported yet method generateKeyLessKeystore (line 61) | public void generateKeyLessKeystore() throws Exception { method trustStoreUrl (line 83) | @Test method testServerWithKeyLessKeystore_EmptyPwd (line 97) | @Test method testServerWithKeyLessKeystore_NullPwd (line 109) | @Test(expected = SoapServerException.class) method testServerWithKeyLessKeystore_WrongPwd (line 121) | @Test(expected = SoapServerException.class) FILE: soap-server/src/test/java/org/reficio/ws/server/SimpleServerTest.java class SimpleServerTest (line 39) | public class SimpleServerTest { method isPortAvailable (line 41) | public static boolean isPortAvailable(int port) { method getFreePort (line 66) | public static int getFreePort() { method getServer (line 75) | public static SoapServer getServer() { method startStop (line 82) | @Test method startStopDestroy (line 95) | @Test method startStopDestroyCannotResurrect (line 103) | @Test method registerCheck (line 118) | @Test method unregisterCheck (line 133) | @Test method doubleRegister (line 148) | @Test(expected = ServiceRegistrationException.class) method registerNullResponder (line 166) | @Test(expected = NullPointerException.class) method registerNullContextPath (line 173) | @Test(expected = NullPointerException.class) method unregisterNotExisting (line 184) | @Test(expected = ServiceRegistrationException.class) FILE: soap-test/src/main/java/org/reficio/ws/test/ServerProcessor.java class ServerProcessor (line 39) | public class ServerProcessor { method ServerProcessor (line 49) | public ServerProcessor(org.reficio.ws.test.junit.Server server, Class ... method ServerProcessor (line 57) | public ServerProcessor(org.reficio.ws.test.spock.Server server, Class ... method processUrl (line 65) | private String processUrl(String wsdlUrl) { method initServer (line 76) | public SoapServer initServer() { method stopServer (line 89) | public void stopServer() { method construct (line 95) | private SoapServer construct() { method registerService (line 101) | private void registerService(SoapServer server, AutoResponder responde... method getAutoResponder (line 105) | private AutoResponder getAutoResponder(SoapBuilder builder) { method getBuilder (line 114) | private SoapBuilder getBuilder(Wsdl parser) { method getWsdlUrl (line 128) | private URL getWsdlUrl(Class testClass) { method validate (line 145) | private void validate() { FILE: soap-test/src/main/java/org/reficio/ws/test/junit/SoapRule.java class SoapRule (line 30) | public class SoapRule implements TestRule { method apply (line 32) | @Override method statement (line 37) | private Statement statement(final Statement base, final Description de... FILE: soap-test/src/test/java/org/reficio/ws/test/junit/SoapRuleTest.java class SoapRuleTest (line 38) | @Server(wsdl = "classpath:wsdl/currency-convertor.wsdl", binding = "Curr... method testSoapMock_perMethodServer (line 52) | @Test method testSoapMock_perClassServer (line 67) | @Test