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

com.marvelution.jira.plugins.sonar.DefaultSonarAssociationImpl 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;

import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;

import com.marvelution.jira.plugins.sonar.service.SonarAssociation;

/**
 * Default {@link SonarAssociation} implementation
 * 
 * @author Mark Rekveld
 */
public class DefaultSonarAssociationImpl implements SonarAssociation {

	private static final ToStringStyle TO_STRING_STYLE = ToStringStyle.SIMPLE_STYLE;

	private Long projectId;

	private String sonarServer;

	private String sonarProject;

	/**
	 * Default Constructor
	 */
	public DefaultSonarAssociationImpl() {
	}

	/**
	 * Constructor
	 * 
	 * @param projectId jira project Id
	 * @param sonarServer Sonar Server Url
	 * @param sonarProject Sonar Project Key
	 */
	public DefaultSonarAssociationImpl(Long projectId, String sonarServer, String sonarProject) {
		this.projectId = projectId;
		this.sonarServer = sonarServer;
		this.sonarProject = sonarProject;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public Long getProjectId() {
		return projectId;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public String getSonarProject() {
		return sonarProject;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public String getSonarServer() {
		return sonarServer;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void setProjectId(Long projectId) {
		this.projectId = projectId;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void setSonarProject(String sonarProject) {
		this.sonarProject = sonarProject;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public void setSonarServer(String sonarServer) {
		this.sonarServer = sonarServer;
	}

	/**
	 * {@inheritDoc}
	 */
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	/**
	 * {@inheritDoc}
	 */
	public boolean equals(Object object) {
		return EqualsBuilder.reflectionEquals(this, object);
	}

	/**
	 * {@inheritDoc}
	 */
	public String toString() {
		return ToStringBuilder.reflectionToString(this, DefaultSonarAssociationImpl.TO_STRING_STYLE);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy