Class WarningAnnotation
- java.lang.Object
-
- com.atlassian.bamboo.build.warning.WarningAnnotation
-
- All Implemented Interfaces:
WhitelistedSerializable
,Serializable
public class WarningAnnotation extends Object implements WhitelistedSerializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
WarningAnnotation.Builder
static class
WarningAnnotation.Severity
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WarningAnnotation.Builder
builder()
String
getCategory()
String
getFileName()
Integer
getLineNumber()
String
getMessage()
Long
getRepositoryId()
@NotNull WarningAnnotation.Severity
getSeverity()
String
getSource()
Human readable name of the warning origin (e.g.
-
-
-
Method Detail
-
builder
public static WarningAnnotation.Builder builder()
-
getSeverity
@NotNull public @NotNull WarningAnnotation.Severity getSeverity()
-
getRepositoryId
public Long getRepositoryId()
-
getFileName
public String getFileName()
-
getLineNumber
public Integer getLineNumber()
-
getMessage
public String getMessage()
-
getCategory
public String getCategory()
-
getSource
public String getSource()
Human readable name of the warning origin (e.g. compiler type)
-
-