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

com.cloudbees.groovy.cps.impl.CallSiteBlockSupport Maven / Gradle / Ivy

There is a newer version: 1.31
Show newest version
package com.cloudbees.groovy.cps.impl;

import com.cloudbees.groovy.cps.sandbox.CallSiteTag;

import javax.annotation.Nonnull;
import java.util.Collection;
import java.util.Collections;

/**
 * Default implementation of {@link CallSiteBlock}.
 *
 * @author Kohsuke Kawaguchi
 */
public abstract class CallSiteBlockSupport implements CallSiteBlock {
    /**
     * To keep persisted form compact, we use null to represent empty set.
     * This is also convenient in case this object is deserialized from the old form.
     */
    private final Collection tags;

    public CallSiteBlockSupport(Collection tags) {
        if (tags.isEmpty())     tags = null;
        this.tags = tags;
    }

    @Nonnull
    public Collection getTags() {
        if (tags==null) return Collections.emptySet();
        return Collections.unmodifiableCollection(tags);
    }

    private static final long serialVersionUID = 1L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy