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

org.eclipse.lyo.client.oslc.resources.RequirementCollection Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2020 Contributors to the Eclipse Foundation
 *
 * See the NOTICE file(s) distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 1.0
 * which is available at http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
 */
package org.eclipse.lyo.client.oslc.resources;

import java.net.URI;
import java.util.Arrays;
import java.util.Set;
import java.util.TreeSet;

import org.eclipse.lyo.oslc4j.core.annotation.OslcDescription;
import org.eclipse.lyo.oslc4j.core.annotation.OslcName;
import org.eclipse.lyo.oslc4j.core.annotation.OslcNamespace;
import org.eclipse.lyo.oslc4j.core.annotation.OslcPropertyDefinition;
import org.eclipse.lyo.oslc4j.core.annotation.OslcRange;
import org.eclipse.lyo.oslc4j.core.annotation.OslcResourceShape;
import org.eclipse.lyo.oslc4j.core.annotation.OslcTitle;


@Deprecated
@OslcNamespace(RmConstants.REQUIREMENTS_MANAGEMENT_NAMESPACE)
@OslcResourceShape(title = "Requirement Collection Resource Shape", describes = RmConstants.TYPE_REQUIREMENT_COLLECTION)
public class RequirementCollection
       extends Requirement
{
	// The only extra field is uses
	private final Set      uses	 = new TreeSet<>();

    public RequirementCollection()
    {
        super();

        addRdfType(URI.create(RmConstants.TYPE_REQUIREMENT_COLLECTION));
    }

    public RequirementCollection(final URI about)
    {
        super(about);

        addRdfType(URI.create(RmConstants.TYPE_REQUIREMENT_COLLECTION));
    }

    public void addUses(final URI uses)
    {
        this.uses.add(uses);
    }

    @OslcDescription("A collection uses a resource - the resource is in the requirement collection.")
    @OslcName("uses")
    @OslcPropertyDefinition(RmConstants.REQUIREMENTS_MANAGEMENT_NAMESPACE + "uses")
    @OslcRange(RmConstants.TYPE_REQUIREMENT)
    @OslcTitle("Uses")
    public URI[] getUses()
    {
        return uses.toArray(new URI[uses.size()]);
    }

    public void setUses(final URI[] uses)
    {
        this.uses.clear();

        if (uses != null)
        {
            this.uses.addAll(Arrays.asList(uses));
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy