Skip to content

Commit 61f8b98

Browse files
committed
adding this back in
1 parent 27117f6 commit 61f8b98

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package com.marklogic.quickstart.model;
2+
3+
import java.util.List;
4+
5+
import com.marklogic.hub.plugin.PluginFormat;
6+
7+
public class EntityModel {
8+
9+
public String entityName;
10+
public List<FlowModel> inputFlows;
11+
public List<FlowModel> harmonizeFlows;
12+
public String model;
13+
14+
public PluginFormat pluginFormat;
15+
16+
public EntityModel() {}
17+
18+
public EntityModel(String entityName) {
19+
this.entityName = entityName;
20+
}
21+
22+
@Override
23+
public String toString() {
24+
StringBuilder sb = new StringBuilder();
25+
sb.append("{");
26+
sb.append("entityName=");
27+
sb.append(entityName);
28+
sb.append("}");
29+
30+
return sb.toString();
31+
}
32+
}

0 commit comments

Comments
 (0)