network.oxalis.as4.inbound.SetPolicyOutInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oxalis-as4 Show documentation
Show all versions of oxalis-as4 Show documentation
Extension adding AS4 support to Oxalis
package network.oxalis.as4.inbound;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import lombok.extern.slf4j.Slf4j;
import network.oxalis.as4.util.PolicyService;
import org.apache.cxf.phase.Phase;
import org.apache.cxf.ws.policy.PolicyOutInterceptor;
@Slf4j
@Singleton
public class SetPolicyOutInterceptor extends AbstractSetPolicyInterceptor {
@Inject
public SetPolicyOutInterceptor(PolicyService policyService) {
super(Phase.SETUP, policyService);
addBefore(PolicyOutInterceptor.class.getName());
}
}