src/main/java/de/uapcore/lightpit/entities/Issue.java

changeset 134
f47e82cd6077
parent 88
1438e5a22c55
child 144
7e06b75cf1b9
     1.1 --- a/src/main/java/de/uapcore/lightpit/entities/Issue.java	Sat Oct 17 15:21:56 2020 +0200
     1.2 +++ b/src/main/java/de/uapcore/lightpit/entities/Issue.java	Sat Oct 17 19:56:50 2020 +0200
     1.3 @@ -39,6 +39,7 @@
     1.4  
     1.5      private int id;
     1.6      private Project project;
     1.7 +    private Component component;
     1.8  
     1.9      private IssueStatus status;
    1.10      private IssueCategory category;
    1.11 @@ -78,6 +79,14 @@
    1.12          return project;
    1.13      }
    1.14  
    1.15 +    public Component getComponent() {
    1.16 +        return component;
    1.17 +    }
    1.18 +
    1.19 +    public void setComponent(Component component) {
    1.20 +        this.component = component;
    1.21 +    }
    1.22 +
    1.23      public IssueStatus getStatus() {
    1.24          return status;
    1.25      }

mercurial