com.sun.xml.ws.policy.jaxws.BuilderHandlerMessageScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rt Show documentation
Show all versions of rt Show documentation
JAX-WS Reference Implementation Runtime
The newest version!
/*
* Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.policy.jaxws;
import com.sun.xml.ws.policy.PolicyException;
import com.sun.xml.ws.policy.PolicyMap;
import com.sun.xml.ws.policy.PolicyMapExtender;
import com.sun.xml.ws.policy.PolicyMapKey;
import com.sun.xml.ws.policy.PolicySubject;
import com.sun.xml.ws.policy.sourcemodel.PolicySourceModel;
import java.util.Collection;
import java.util.Map;
import javax.xml.namespace.QName;
/**
*
* @author Jakub Podlesak (jakub.podlesak at sun.com)
*/
final class BuilderHandlerMessageScope extends BuilderHandler{
private final QName service;
private final QName port;
private final QName operation;
private final QName message;
private final Scope scope;
enum Scope{
InputMessageScope,
OutputMessageScope,
FaultMessageScope,
}
/** Creates a new instance of WSDLServiceScopeBuilderHandler */
BuilderHandlerMessageScope(
Collection policyURIs
, Map policyStore
, Object policySubject
, Scope scope
, QName service, QName port, QName operation, QName message) {
super(policyURIs, policyStore, policySubject);
this.service = service;
this.port = port;
this.operation = operation;
this.scope = scope;
this.message = message;
}
/**
* Multiple bound operations may refer to the same fault messages. This would result
* in multiple builder handlers referring to the same policies. This method allows
* to sort out these duplicate handlers.
*/
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof BuilderHandlerMessageScope)) {
return false;
}
final BuilderHandlerMessageScope that = (BuilderHandlerMessageScope) obj;
boolean result = true;
result = result && ((this.policySubject == null) ? (that.policySubject == null) :this.policySubject.equals(that.policySubject));
result = result && ((this.scope == null) ? (that.scope == null) :this.scope.equals(that.scope));
result = result && ((this.message == null) ? (that.message == null) :this.message.equals(that.message));
if (this.scope != Scope.FaultMessageScope) {
result = result && ((this.service == null) ? (that.service == null) :this.service.equals(that.service));
result = result && ((this.port == null) ? (that.port == null) :this.port.equals(that.port));
result = result && ((this.operation == null) ? (that.operation == null) :this.operation.equals(that.operation));
}
return result;
}
@Override
public int hashCode() {
int hashCode = 19;
hashCode = 31 * hashCode + (policySubject == null ? 0 : policySubject.hashCode());
hashCode = 31 * hashCode + (message == null ? 0 : message.hashCode());
hashCode = 31 * hashCode + (scope == null ? 0 : scope.hashCode());
if (scope != Scope.FaultMessageScope) {
hashCode = 31 * hashCode + (service == null ? 0 : service.hashCode());
hashCode = 31 * hashCode + (port == null ? 0 : port.hashCode());
hashCode = 31 * hashCode + (operation == null ? 0 : operation.hashCode());
}
return hashCode;
}
@Override
protected void doPopulate(final PolicyMapExtender policyMapExtender) throws PolicyException{
PolicyMapKey mapKey;
if (Scope.FaultMessageScope == scope) {
mapKey = PolicyMap.createWsdlFaultMessageScopeKey(service, port, operation, message);
} else { // in|out msg scope
mapKey = PolicyMap.createWsdlMessageScopeKey(service, port, operation);
}
if (Scope.InputMessageScope == scope) {
for (PolicySubject subject:getPolicySubjects()) {
policyMapExtender.putInputMessageSubject(mapKey, subject);
}
} else if (Scope.OutputMessageScope == scope) {
for (PolicySubject subject:getPolicySubjects()) {
policyMapExtender.putOutputMessageSubject(mapKey, subject);
}
} else if (Scope.FaultMessageScope == scope) {
for (PolicySubject subject : getPolicySubjects()) {
policyMapExtender.putFaultMessageSubject(mapKey, subject);
}
}
}
}