re base code
[sdc.git] / openecomp-be / tools / pmd-helper-plugin / src / main / java / org / openecomp / sdc / onboarding / pmd / Violation.java
1 /*
2  * Copyright © 2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on a "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.onboarding.pmd;
18
19 import java.io.Serializable;
20
21 public class Violation implements Serializable {
22
23     private final String category;
24     private final String rule;
25     private final String description;
26     private final int priority;
27     private final int line;
28
29     public String getCategory() {
30         return category;
31     }
32
33     public String getRule() {
34         return rule;
35     }
36
37     public int getPriority() {
38         return priority;
39     }
40
41     public int getLine() {
42         return line;
43     }
44
45     public Violation(String category, String rule, String description, int priority, int line) {
46         this.category = category;
47         this.rule = rule;
48         this.description = description;
49         this.priority = priority;
50         this.line = line;
51     }
52
53     public String toString() {
54         return category + ":" + rule + ":" + getPriority() + description + ":" + line;
55     }
56 }