Add DCAE MOD design tool project
[dcaegen2/platform.git] / mod / designtool / designtool-web / src / main / webapp / WEB-INF / partials / canvas / settings-content.jsp
1 <%--
2  Licensed to the Apache Software Foundation (ASF) under one or more
3   contributor license agreements.  See the NOTICE file distributed with
4   this work for additional information regarding copyright ownership.
5   The ASF licenses this file to You under the Apache License, Version 2.0
6   (the "License"); you may not use this file except in compliance with
7   the License.  You may obtain a copy of the License at
8
9       http://www.apache.org/licenses/LICENSE-2.0
10
11   Unless required by applicable law or agreed to in writing, software
12   distributed under the License is distributed on an "AS IS" BASIS,
13   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   See the License for the specific language governing permissions and
15   limitations under the License.
16
17   Modifications to the original nifi code for the ONAP project are made
18   available under the Apache License, Version 2.0
19 --%>
20 <%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %>
21 <div id="settings" class="hidden">
22     <div id="settings-header-text" class="settings-header-text">NiFi Settings</div>
23     <div class="settings-container">
24         <div>
25             <div id="settings-tabs" class="settings-tabs tab-container"></div>
26             <div class="clear"></div>
27         </div>
28         <div id="settings-tabs-content">
29             <button id="new-service-or-task" class="add-button fa fa-plus" title="Create a new reporting task controller service" style="display: block;"></button>
30             <div id="general-settings-tab-content" class="configuration-tab">
31                 <div id="general-settings">
32                     <div class="setting">
33                         <div class="setting-name">
34                             Maximum timer driven thread count
35                             <div class="fa fa-question-circle" alt="Info" title="The maximum number of threads for timer driven processors available to the system."></div>
36                         </div>
37                         <div class="editable setting-field">
38                             <input type="text" id="maximum-timer-driven-thread-count-field" class="setting-input"/>
39                         </div>
40                         <div class="read-only setting-field">
41                             <span id="read-only-maximum-timer-driven-thread-count-field"></span>
42                         </div>
43                     </div>
44                     <div class="setting">
45                         <div class="setting-name">
46                             Maximum event driven thread count
47                             <div class="fa fa-question-circle" alt="Info" title="The maximum number of threads for event driven processors available to the system."></div>
48                         </div>
49                         <div class="editable setting-field">
50                             <input type="text" id="maximum-event-driven-thread-count-field" class="setting-input"/>
51                         </div>
52                         <div class="read-only setting-field">
53                             <span id="read-only-maximum-event-driven-thread-count-field"></span>
54                         </div>
55                     </div>
56                     <div class="editable settings-buttons">
57                         <div id="settings-save" class="button">Apply</div>
58                         <div class="clear"></div>
59                     </div>
60                 </div>
61             </div>
62             <div id="controller-services-tab-content" class="configuration-tab controller-settings-table">
63                 <div id="controller-services-table" class="settings-table"></div>
64             </div>
65             <div id="reporting-tasks-tab-content" class="configuration-tab controller-settings-table">
66                 <div id="reporting-tasks-table" class="settings-table"></div>
67             </div>
68             <div id="registries-tab-content" class="configuration-tab controller-settings-table">
69                 <div id="registries-table" class="settings-table"></div>
70             </div>
71              <div id="distribution-environment-content" class="configuration-tab controller-settings-table">
72                 <div id="distribution-environments-table" class="settings-table" style="width:100%; margin:20px;"></div>
73              </div>
74
75         </div>
76     </div>
77     <div id="settings-refresh-container">
78         <button id="settings-refresh-button" class="refresh-button pointer fa fa-refresh" title="Refresh"></button>
79         <div id="settings-last-refreshed-container" class="last-refreshed-container">
80             Last updated:&nbsp;<span id="settings-last-refreshed" class="value-color"></span>
81         </div>
82         <div id="settings-loading-container" class="loading-container"></div>
83         <div id="controller-cs-availability" class="hidden">Listed services are available to all Reporting Tasks and services defined in the Controller Settings.</div>
84         <div class="clear"></div>
85     </div>
86 </div>