Class Annotation
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.insights.Annotation
-
public abstract class Annotation extends java.lang.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(java.lang.String reportKey, java.lang.String externalId, int line, java.lang.String link, java.lang.String message, java.lang.String path, Annotation.AnnotationSeverity severity, Annotation.AnnotationType type)abstract java.lang.StringexternalId()abstract intline()abstract java.lang.Stringlink()abstract java.lang.Stringmessage()abstract java.lang.Stringpath()abstract java.lang.StringreportKey()abstract Annotation.AnnotationSeverityseverity()abstract Annotation.AnnotationTypetype()
-
-
-
Method Detail
-
reportKey
@Nullable public abstract java.lang.String reportKey()
-
externalId
@Nullable public abstract java.lang.String externalId()
-
line
public abstract int line()
-
link
@Nullable public abstract java.lang.String link()
-
message
@Nullable public abstract java.lang.String message()
-
path
@Nullable public abstract java.lang.String path()
-
severity
@Nullable public abstract Annotation.AnnotationSeverity severity()
-
type
@Nullable public abstract Annotation.AnnotationType type()
-
create
public static Annotation create(java.lang.String reportKey, java.lang.String externalId, int line, java.lang.String link, java.lang.String message, java.lang.String path, Annotation.AnnotationSeverity severity, Annotation.AnnotationType type)
-
-