diff options
Diffstat (limited to 'src/main/java/com/nis/entity/Endpoint.java')
| -rw-r--r-- | src/main/java/com/nis/entity/Endpoint.java | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/main/java/com/nis/entity/Endpoint.java b/src/main/java/com/nis/entity/Endpoint.java new file mode 100644 index 0000000..fbd6905 --- /dev/null +++ b/src/main/java/com/nis/entity/Endpoint.java @@ -0,0 +1,63 @@ +package com.nis.entity;
+
+import java.io.Serializable;
+
+public class Endpoint implements Serializable{
+
+ private Integer id;
+ private Integer moduleId;
+ private Integer assetId;
+ private String host;
+ private Integer port;
+ private String param;
+ private String path;
+ private Module module;
+ public Integer getId() {
+ return id;
+ }
+ public void setId(Integer id) {
+ this.id = id;
+ }
+ public Integer getModuleId() {
+ return moduleId;
+ }
+ public void setModuleId(Integer moduleId) {
+ this.moduleId = moduleId;
+ }
+ public Integer getAssetId() {
+ return assetId;
+ }
+ public void setAssetId(Integer assetId) {
+ this.assetId = assetId;
+ }
+ public String getHost() {
+ return host;
+ }
+ public void setHost(String host) {
+ this.host = host;
+ }
+ public Integer getPort() {
+ return port;
+ }
+ public void setPort(Integer port) {
+ this.port = port;
+ }
+ public String getParam() {
+ return param;
+ }
+ public void setParam(String param) {
+ this.param = param;
+ }
+ public String getPath() {
+ return path;
+ }
+ public void setPath(String path) {
+ this.path = path;
+ }
+ public Module getModule() {
+ return module;
+ }
+ public void setModule(Module module) {
+ this.module = module;
+ }
+}
|
