Class Annotation
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.insights.Annotation
-
public abstract class Annotation extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAnnotation.AnnotationSeveritystatic classAnnotation.AnnotationType
-
Constructor Summary
Constructors Constructor Description Annotation()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Annotationcreate(String reportKey, String externalId, int line, String link, String message, String path, Annotation.AnnotationSeverity severity, Annotation.AnnotationType type)abstract StringexternalId()abstract intline()abstract Stringlink()abstract Stringmessage()abstract Stringpath()abstract StringreportKey()abstract Annotation.AnnotationSeverityseverity()abstract Annotation.AnnotationTypetype()
-
-
-
Method Detail
-
reportKey
@Nullable public abstract String reportKey()
-
externalId
@Nullable public abstract String externalId()
-
line
public abstract int line()
-
link
@Nullable public abstract String link()
-
message
@Nullable public abstract String message()
-
path
@Nullable public abstract String path()
-
severity
@Nullable public abstract Annotation.AnnotationSeverity severity()
-
type
@Nullable public abstract Annotation.AnnotationType type()
-
create
public static Annotation create(String reportKey, String externalId, int line, String link, String message, String path, Annotation.AnnotationSeverity severity, Annotation.AnnotationType type)
-
-