Adding new classes to handle vera and updated distribution to include js

and css files in the jar.
This commit is contained in:
Admin
2015-08-13 08:46:31 -05:00
parent f8bebe38c0
commit c6132f2b03
20 changed files with 1051 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.bwssystems.luupRequests;
public class Section {
private String name;
private String id;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}