forked from hub4j/github-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGHCodeownersError.java
More file actions
85 lines (74 loc) · 1.48 KB
/
GHCodeownersError.java
File metadata and controls
85 lines (74 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package org.kohsuke.github;
/**
* Represents an error in a {@code CODEOWNERS} file. See <a href=
* "https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners">the
* relevant documentation</a>.
*
* @author Michael Grant
*/
public class GHCodeownersError
implements community.kotlin.conrib.github.GHCodeownersError {
private String kind, source, suggestion, message, path;
private int line, column;
/**
* Create default GHCodeownersError instance
*/
public GHCodeownersError() {
}
/**
* Gets column.
*
* @return the column
*/
public int getColumn() {
return column;
}
/**
* Gets kind.
*
* @return the kind
*/
public String getKind() {
return kind;
}
/**
* Gets line.
*
* @return the line
*/
public int getLine() {
return line;
}
/**
* Gets message.
*
* @return the message
*/
public String getMessage() {
return message;
}
/**
* Gets path.
*
* @return the path
*/
public String getPath() {
return path;
}
/**
* Gets source.
*
* @return the source
*/
public String getSource() {
return source;
}
/**
* Gets suggestion.
*
* @return the suggestion
*/
public String getSuggestion() {
return suggestion;
}
}