File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
dslink-core/src/main/java/org/iot/dsa/dslink Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 77import org .iot .dsa .node .action .ActionInvocation ;
88import org .iot .dsa .node .action .ActionResult ;
99import org .iot .dsa .node .action .DSAction ;
10+ import org .iot .dsa .profiler .ProfilerNode ;
1011import org .iot .dsa .util .DSException ;
1112
1213/**
@@ -19,6 +20,7 @@ public class DSSysNode extends DSNode {
1920 static final String CONNECTION = "connection" ;
2021 static final String SAVE = "save" ;
2122 static final String STOP = "stop" ;
23+ static final String PROFILER = "profiler" ;
2224
2325 private DSInfo connection = getInfo (CONNECTION );
2426 private DSInfo save = getInfo (SAVE );
@@ -29,6 +31,7 @@ protected void declareDefaults() {
2931 declareDefault (CONNECTION , new DSNode ()).setTransient (true );
3032 declareDefault (SAVE , DSAction .DEFAULT );
3133 declareDefault (STOP , DSAction .DEFAULT );
34+ declareDefault (PROFILER , new ProfilerNode ()).setTransient (true );
3235 }
3336
3437 public DSLinkConnection getConnection () {
You can’t perform that action at this time.
0 commit comments