Création d'un client pour tester le service soap

This commit is contained in:
Nicolas Héron 2019-08-13 15:33:43 +02:00
commit b23d9bd46d
3 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,14 @@
package org.chtijbug.drools.reverseproxy.mappings;
import com.github.mkopylec.charon.configuration.MappingProperties;
import com.github.mkopylec.charon.core.http.ReceivedResponseInterceptor;
import com.github.mkopylec.charon.core.http.ResponseData;
import org.springframework.stereotype.Component;
@Component
public class CustomReceivedResponseInterceptor implements ReceivedResponseInterceptor {
@Override
public void intercept(ResponseData responseData, MappingProperties mappingProperties) {
System.out.println("response");
}
}