1 package com.atlassian.plugins.codegen.modules.jira;
2
3 /**
4 * @since 3.6
5 */
6 public class View
7 {
8 private String name;
9 private String path;
10
11 public View(String name, String path)
12 {
13 this.name = name;
14 this.path = path;
15 }
16
17 public String getName()
18 {
19 return name;
20 }
21
22 public void setName(String name)
23 {
24 this.name = name;
25 }
26
27 public String getPath()
28 {
29 return path;
30 }
31
32 public void setPath(String path)
33 {
34 this.path = path;
35 }
36 }