JAL-1831 added changes to allow auto-generation of BioJSON schema from src code
[jalview.git] / src / jalview / json / binding / biojs / BioJSReleasePojo.java
1 package jalview.json.binding.biojs;
2
3 public class BioJSReleasePojo
4 {
5
6   private String url;
7
8   private String version;
9
10   private String type;
11
12   public BioJSReleasePojo()
13   {
14
15   }
16
17   public String getUrl()
18   {
19     return url;
20   }
21
22   public void setUrl(String url)
23   {
24     this.url = url;
25   }
26
27   public String getVersion()
28   {
29     return version;
30   }
31
32   public void setVersion(String version)
33   {
34     this.version = version;
35   }
36
37   public String getType()
38   {
39     return type;
40   }
41
42   public void setType(String type)
43   {
44     this.type = type;
45   }
46 }