All Downloads are FREE. Search and download functionalities are using the official Maven repository.

network.oxalis.as4.inbound.SetPolicyOutInterceptor Maven / Gradle / Ivy

There is a newer version: 6.7.0
Show newest version
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());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy