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

com.sun.enterprise.deployment.annotation.handlers.ManagedThreadFactoryDefinitionData Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2022, 2024 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.annotation.handlers;

import java.util.ArrayList;
import java.util.List;
import java.util.Properties;

/**
 * @author David Matejcek
 */
public class ManagedThreadFactoryDefinitionData implements ContextualResourceDefinition {
    private static final long serialVersionUID = 4872331203152289320L;

    private String name;
    private String context;
    private int priority = Thread.NORM_PRIORITY;
    private boolean virtual;
    private final List qualifiers = new ArrayList<>();
    private final Properties properties = new Properties();


    @Override
    public String getName() {
        return name;
    }


    @Override
    public void setName(String name) {
        this.name = name;
    }


    @Override
    public String getContext() {
        return context;
    }


    @Override
    public void setContext(String context) {
        this.context = context;
    }


    @Override
    public List getQualifiers() {
        return qualifiers;
    }


    public void setQualifiers(List qualifiers) {
        this.qualifiers.clear();
        this.qualifiers.addAll(qualifiers);
    }


    @Override
    public void addQualifier(String qualifier) {
        this.qualifiers.add(qualifier);
    }


    @Override
    public boolean isVirtual() {
        return virtual;
    }


    @Override
    public void setVirtual(boolean virtual) {
        this.virtual = virtual;
    }


    public int getPriority() {
        return priority;
    }


    public void setPriority(int priority) {
        this.priority = priority;
    }


    public Properties getProperties() {
        return properties;
    }


    public void addManagedThreadFactoryPropertyDescriptor(String name, String value) {
        properties.put(name, value);
    }


    @Override
    public String toString() {
        return super.toString() + "[name=" + getName() + ", context=" + context + ", priority=" + priority
            + ", virtual=" + virtual + ", qualifiers=" + qualifiers + ", properties=" + properties + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy