com.sun.xml.ws.policy.PolicyMapMutator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxws-rt Show documentation
Show all versions of jaxws-rt Show documentation
JAX-WS Runtime with module descriptor
/*
* Copyright (c) 1997, 2020 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;
import com.sun.xml.ws.policy.privateutil.LocalizationMessages;
import com.sun.xml.ws.policy.privateutil.PolicyLogger;
/**
* The class serves as a base for specific policy map mutator implementations. It provides common methods that allow
* concrete mutator implementations to connect and disconnect to/from a policy map instance.
*
* @author Marek Potociar ([email protected])
*/
public abstract class PolicyMapMutator {
private static final PolicyLogger LOGGER = PolicyLogger.getLogger(PolicyMapMutator.class);
private PolicyMap map = null;
/**
* Creates a new instance of PolicyMapMutator. This class cannot be extended from outside of this package.
*/
PolicyMapMutator() {
// nothing to instantiate
}
/**
* The method is used to connect the policy map mutator instance to the map it should mutate.
*
* @param map the policy map instance that will be mutable by this mutator.
* @throws IllegalStateException in case this mutator object is already connected to a policy map.
*/
public void connect(final PolicyMap map) {
if (isConnected()) {
throw LOGGER.logSevereException(new IllegalStateException(LocalizationMessages.WSP_0044_POLICY_MAP_MUTATOR_ALREADY_CONNECTED()));
}
this.map = map;
}
/**
* Can be used to retrieve the policy map currently connected to this mutator. Will return {@code null} if not connected.
*
* @return policy map currently connected to this mutator. May return {@code null} if the mutator is not connected.
*
* @see #isConnected()
* @see #disconnect()
*/
public PolicyMap getMap() {
return this.map;
}
/**
* Disconnects the mutator from the policy map object it is connected to. Method must be called prior to connecting this
* mutator instance to another policy map.
*
* This operation is irreversible: you cannot connect the mutator to the same policy map instance once you disconnect from it.
* Multiple consequent calls of this method will have no effect.
*/
public void disconnect() {
this.map = null;
}
/**
* This method provides connection status information of the policy map mutator instance.
*
* @return {@code true} if the mutator instance is connected to a policy map, otherwise returns {@code false}.
*/
public boolean isConnected() {
return this.map != null;
}
}