com.sun.enterprise.deployment.node.ManagedThreadFactoryDefinitionNode Maven / Gradle / Ivy
/*
* Copyright (c) 2022, 2022 Eclipse Foundation and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package com.sun.enterprise.deployment.node;
import com.sun.enterprise.deployment.ManagedThreadFactoryDefinitionDescriptor;
import java.util.Map;
import org.w3c.dom.Node;
import static com.sun.enterprise.deployment.xml.ConcurrencyTagNames.MANAGED_THREAD_FACTORY_CONTEXT_SERVICE_REF;
import static com.sun.enterprise.deployment.xml.ConcurrencyTagNames.MANAGED_THREAD_FACTORY_PRIORITY;
import static com.sun.enterprise.deployment.xml.TagNames.NAME;
import static com.sun.enterprise.deployment.xml.TagNames.RESOURCE_PROPERTY;
public class ManagedThreadFactoryDefinitionNode
extends DeploymentDescriptorNode {
public ManagedThreadFactoryDefinitionNode() {
registerElementHandler(new XMLElement(RESOURCE_PROPERTY), ResourcePropertyNode.class,
"addManagedThreadFactoryPropertyDescriptor");
}
@Override
public ManagedThreadFactoryDefinitionDescriptor createDescriptor() {
return new ManagedThreadFactoryDefinitionDescriptor();
}
@Override
protected Map getDispatchTable() {
Map map = super.getDispatchTable();
map.put(NAME, "setName");
map.put(MANAGED_THREAD_FACTORY_CONTEXT_SERVICE_REF, "setContext");
map.put(MANAGED_THREAD_FACTORY_PRIORITY, "setPriority");
return map;
}
@Override
public Node writeDescriptor(Node parent, String nodeName, ManagedThreadFactoryDefinitionDescriptor descriptor) {
Node node = appendChild(parent, nodeName);
appendTextChild(node, NAME, descriptor.getName());
appendTextChild(node, MANAGED_THREAD_FACTORY_CONTEXT_SERVICE_REF, descriptor.getContext());
appendTextChild(node, MANAGED_THREAD_FACTORY_PRIORITY, String.valueOf(descriptor.getPriority()));
return ResourcePropertyNode.write(node, descriptor);
}
}