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 associationId = 0L;
private Long projectId = 0L;
private Long componentId = 0L;
private String sonarServer = "";
private String sonarProject = "";
/**
* Default Constructor
*/
public DefaultSonarAssociationImpl() {
this(0L, 0L, 0L, "", "");
}
/**
* 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(0L, projectId, 0L, sonarServer, sonarProject);
}
/**
* Constructor
*
* @param projectId jira project Id
* @param componentId Jira project component Id
* @param sonarServer Sonar Server Url
* @param sonarProject Sonar Project Key
*/
public DefaultSonarAssociationImpl(Long projectId, Long componentId, String sonarServer, String sonarProject) {
this(0L, projectId, componentId, sonarServer, sonarProject);
}
/**
* Constructor
*
* @param associationId the Association Id
* @param projectId jira project Id
* @param componentId Jira project component Id
* @param sonarServer Sonar Server Url
* @param sonarProject Sonar Project Key
*/
public DefaultSonarAssociationImpl(Long associationId, Long projectId, Long componentId, String sonarServer,
String sonarProject) {
this.associationId = associationId;
this.projectId = projectId;
this.componentId = componentId;
this.sonarServer = sonarServer;
this.sonarProject = sonarProject;
}
/**
* {@inheritDoc}
*/
@Override
public Long getAssociationId() {
return associationId;
}
/**
* {@inheritDoc}
*/
@Override
public Long getProjectId() {
return projectId;
}
/**
* {@inheritDoc}
*/
@Override
public Long getComponentId() {
return componentId;
}
/**
* {@inheritDoc}
*/
@Override
public String getSonarProject() {
return sonarProject;
}
/**
* {@inheritDoc}
*/
@Override
public String getSonarServer() {
return sonarServer;
}
/**
* {@inheritDoc}
*/
@Override
public void setAssociationId(Long associationId) {
this.associationId = associationId;
}
/**
* {@inheritDoc}
*/
@Override
public void setProjectId(Long projectId) {
this.projectId = projectId;
}
/**
* {@inheritDoc}
*/
@Override
public void setComponentId(Long componentId) {
this.componentId = componentId;
}
/**
* {@inheritDoc}
*/
@Override
public void setSonarProject(String sonarProject) {
this.sonarProject = sonarProject;
}
/**
* {@inheritDoc}
*/
@Override
public void setSonarServer(String sonarServer) {
this.sonarServer = sonarServer;
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
/**
* {@inheritDoc}
*/
@Override
public boolean equals(Object object) {
return EqualsBuilder.reflectionEquals(this, object);
}
/**
* {@inheritDoc}
*/
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, DefaultSonarAssociationImpl.TO_STRING_STYLE);
}
}