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

com.marvelution.jira.plugins.sonar.service.SonarAssociationManager Maven / Gradle / Ivy

/*
 * Licensed to Marvelution under one or more contributor license 
 * agreements.  See the NOTICE file distributed with this work 
 * for additional information regarding copyright ownership.
 * Marvelution licenses this file to you under the Apache License,
 * Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package com.marvelution.jira.plugins.sonar.service;

import java.util.Collection;

/**
 * Sonar Server and Project Association Manager Interface
 * 
 * @author Mark Rekveld
 */
public interface SonarAssociationManager {

	/**
	 * Check if any Sonar Server associations are configured
	 * 
	 * @return true if there are associations, false otherwise
	 * @since 1.1.0
	 */
	boolean hasSonarAssociations();

	/**
	 * Check if a project has a Sonar Server association
	 * 
	 * @param projectId the Id of the project to check
	 * @return true if the project is associated, false otherwise
	 */
	boolean hasSonarAssociations(Long projectId);

	/**
	 * Check if a project has a Sonar Server association
	 * 
	 * @param projectId the Id of the project to check
	 * @param componentId the Id of the project component to check
	 * @return true if the project is associated, false otherwise
	 */
	boolean hasSonarAssociations(Long projectId, Long componentId);

	/**
	 * Get the {@link Collection} of configured {@link SonarAssociation}s
	 * 
	 * @return the {@link Collection} of configured {@link SonarAssociation}s
	 */
	Collection getSonarAssociations();

	/**
	 * Get the {@link SonarAssociation} for a Jira Project by project Id
	 * 
	 * @param projectId the Jira projects Id
	 * @return the {@link Collection} of {@link SonarAssociation} for the project, may be empty
	 */
	Collection getSonarAssociations(Long projectId);

	/**
	 * Get the {@link SonarAssociation} for a Jira Project by project Id
	 * 
	 * @param projectId the Jira projects Id
	 * @param componentId the Jira project component Id
	 * @return the {@link Collection} of {@link SonarAssociation} for the project's component, may be empty
	 */
	Collection getSonarAssociations(Long projectId, Long componentId);

	/**
	 * Get the {@link SonarAssociation} by association Id
	 * 
	 * @param associationId the association Id
	 * @return the {@link SonarAssociation}, may be null
	 */
	SonarAssociation getSonarAssociationById(Long associationId);

	/**
	 * Add a Sonar Project Association
	 * 
	 * @param sonarAssociation the {@link SonarAssociation} to add
	 */
	void put(SonarAssociation sonarAssociation);

	/**
	 * Remove a Sonar Association
	 * 
	 * @param associationId the association Id of the association to remove
	 */
	void remove(Long associationId);

	/**
	 * Remove a Sonar Association
	 * 
	 * @param sonarAssociation the association to remove
	 */
	void remove(SonarAssociation sonarAssociation);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy