Skip to content

Commit

Permalink
added membrane annot
Browse files Browse the repository at this point in the history
  • Loading branch information
christiangoerdes committed Aug 30, 2023
1 parent 8eeff36 commit e35eee8
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.predic8.membrane.core.interceptor.soap;

import com.predic8.membrane.annot.MCElement;
import com.predic8.membrane.core.exchange.Exchange;
import com.predic8.membrane.core.http.Response;
import com.predic8.membrane.core.interceptor.AbstractInterceptor;
Expand Down Expand Up @@ -29,7 +30,13 @@
import static com.predic8.membrane.core.interceptor.Outcome.RETURN;
import static javax.xml.stream.XMLStreamConstants.START_ELEMENT;

@MCElement(name="sampleSoapService")
public class SampleSoapService extends AbstractInterceptor {

public SampleSoapService() {
name = "SampleSoapService";
}

@Override
public Outcome handleRequest(Exchange exc) throws Exception {
try {
Expand Down

0 comments on commit e35eee8

Please sign in to comment.