Lines Matching refs:epr

110     protected DispatchImpl(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr) {
111 super(port, owner, pipe, binding, (owner.getWsdlService() != null)? owner.getWsdlService().get(port) : null , owner.getEndpointAddress(port), epr);
122 protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, BindingImpl binding, @Nullable WSEndpointReference epr) {
123 this(portInfo, mode, binding, epr, false);
132 protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, BindingImpl binding, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
133 this(portInfo, mode, binding, null, epr, allowFaultResponseMsg);
143 protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, BindingImpl binding, Tube pipe, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
144 super(portInfo, binding, pipe, portInfo.getEndpointAddress(), epr);
157 protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
158 super(portInfo, binding, pipe, portInfo.getEndpointAddress(), epr);
646 public static Dispatch<Source> createSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
648 return new RESTSourceDispatch(port,mode,owner,pipe,binding,epr);
650 return new SOAPSourceDispatch(port,mode,owner,pipe,binding,epr);
653 public static Dispatch<Source> createSourceDispatch(WSPortInfo portInfo, Mode mode, BindingImpl binding, WSEndpointReference epr) {
655 return new RESTSourceDispatch(portInfo, mode, binding, epr);
657 return new SOAPSourceDispatch(portInfo, mode, binding, epr);