org.conqat.engine.index.shared.FindingsSummaryInfoBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of teamscale-commons Show documentation
Show all versions of teamscale-commons Show documentation
Provides common DTOs for Teamscale
/*-------------------------------------------------------------------------+
| |
| Copyright (c) 2009-2019 CQSE GmbH |
| |
+-------------------------------------------------------------------------*/
package org.conqat.engine.index.shared;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.conqat.lib.commons.js_export.ExportToTypeScript;
/**
* Base class for finding summary info objects.
*/
@ExportToTypeScript
public abstract class FindingsSummaryInfoBase implements Serializable {
private static final long serialVersionUID = 1L;
/** The overall number of findings in the contained group infos */
@JsonProperty("count")
protected int count = 0;
/** The number of red findings */
@JsonProperty("countRed")
protected int countRed = 0;
/** @see #count */
public int getCount() {
return count;
}
/** @see #countRed */
public int getCountRed() {
return countRed;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy