File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
quick-start/src/main/java/com/marklogic/quickstart/model Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments