org.sonar.api.batch.debt.internal.DefaultDebtCharacteristic Maven / Gradle / Ivy
/*
* SonarQube, open source software quality management tool.
* Copyright (C) 2008-2014 SonarSource
* mailto:contact AT sonarsource DOT com
*
* SonarQube is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* SonarQube is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.api.batch.debt.internal;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
import org.sonar.api.batch.debt.DebtCharacteristic;
import javax.annotation.CheckForNull;
import javax.annotation.Nullable;
import java.util.Date;
public class DefaultDebtCharacteristic implements DebtCharacteristic {
private Integer id;
private String key;
private String name;
private Integer order;
private Integer parentId;
private Date createdAt;
private Date updatedAt;
public Integer id() {
return id;
}
public DefaultDebtCharacteristic setId(Integer id) {
this.id = id;
return this;
}
@Override
public String key() {
return key;
}
public DefaultDebtCharacteristic setKey(String key) {
this.key = key;
return this;
}
@Override
public String name() {
return name;
}
public DefaultDebtCharacteristic setName(String name) {
this.name = name;
return this;
}
@Override
@CheckForNull
public Integer order() {
return order;
}
public DefaultDebtCharacteristic setOrder(@Nullable Integer order) {
this.order = order;
return this;
}
@CheckForNull
public Integer parentId() {
return parentId;
}
public DefaultDebtCharacteristic setParentId(@Nullable Integer parentId) {
this.parentId = parentId;
return this;
}
public Date createdAt() {
return createdAt;
}
public DefaultDebtCharacteristic setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
return this;
}
@CheckForNull
public Date updatedAt() {
return updatedAt;
}
public DefaultDebtCharacteristic setUpdatedAt(@Nullable Date updatedAt) {
this.updatedAt = updatedAt;
return this;
}
@Override
public boolean isSub(){
return parentId != null;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.SHORT_PREFIX_STYLE);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy