summaryrefslogtreecommitdiff
path: root/qpid/java/broker-plugins/management-http/src/main/java/resources/editVirtualHost.html
blob: 9b981b055e83b6ca0b67a085e84d2974b8880d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!--
  ~ Licensed to the Apache Software Foundation (ASF) under one
  ~ or more contributor license agreements.  See the NOTICE file
  ~ distributed with this work for additional information
  ~ regarding copyright ownership.  The ASF licenses this file
  ~ to you under the Apache License, Version 2.0 (the
  ~ "License"); you may not use this file except in compliance
  ~ with the License.  You may obtain a copy of the License at
  ~
  ~   http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing,
  ~ software distributed under the License is distributed on an
  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  ~ KIND, either express or implied.  See the License for the
  ~ specific language governing permissions and limitations
  ~ under the License.
  -->
<div class="dijitHidden">
  <div data-dojo-type="dijit/Dialog" data-dojo-props="title:'Edit Virtual Host'" id="editVirtualHostDialog">
      <form id="editVirtualHostForm" method="post" data-dojo-type="dijit/form/Form">
          <div id="editVirtualHost.allFields">
              <div class="editNoteBanner">NOTE: All changes will only take effect after Virtual Host restart.</div>
              <div class="clear">
                  <div class="formLabel-labelCell tableContainer-labelCell">Name*:</div>
                  <div class="formLabel-controlCell tableContainer-valueCell">
                      <input type="text" id="editVirtualHost.name"
                             data-dojo-type="dijit/form/ValidationTextBox"
                             data-dojo-props="
                              name: 'name',
                              placeHolder: 'name',
                              required: true,
                              disabled: true,
                              title: 'Enter virtual host name'" />
                  </div>
              </div>

              <div id="editVirtualHost.typeFields"></div>

              <div class="clear formBox">
                  <fieldset>
                      <legend>Store transaction settings</legend>
                      <div class="clear">
                          <div class="formLabel-labelCell tableContainer-labelCell">Idle Timeout Warn:</div>
                          <div class="tableContainer-valueCell formLabel-controlCell">
                              <input data-dojo-type="dijit/form/ValidationTextBox"
                                     id="editVirtualHost.storeTransactionIdleTimeoutWarn"
                                     name="storeTransactionIdleTimeoutWarn"
                                     placeHolder="idle timeout warn time in ms"
                                     promptMessage="Length of time a transaction must be idle before warnings produced"/>
                          </div>
                      </div>
                      <div class="clear">
                          <div class="formLabel-labelCell tableContainer-labelCell">Idle Timeout Close:</div>
                          <div class="tableContainer-valueCell formLabel-controlCell">
                              <input data-dojo-type="dijit/form/ValidationTextBox"
                                     id="editVirtualHost.storeTransactionIdleTimeoutClose"
                                     name="storeTransactionIdleTimeoutClose"
                                     placeHolder="idle timeout close time in ms"
                                     promptMessage="Length of time a transaction must be idle before the connection is closed"/>
                          </div>
                      </div>
                      <div class="clear">
                          <div class="formLabel-labelCell tableContainer-labelCell">Open Timeout Warn:</div>
                          <div class="tableContainer-valueCell formLabel-controlCell">
                              <input data-dojo-type="dijit/form/ValidationTextBox"
                                     id="editVirtualHost.storeTransactionOpenTimeoutWarn"
                                     name="storeTransactionOpenTimeoutWarn"
                                     placeHolder="open timeout warn time in ms"
                                     promptMessage="Length of time a transaction must be open before warnings produced"/>
                          </div>
                      </div>
                      <div class="clear">
                          <div class="formLabel-labelCell tableContainer-labelCell">Open Timeout Close:</div>
                          <div class="tableContainer-valueCell formLabel-controlCell">
                              <input data-dojo-type="dijit/form/ValidationTextBox"
                                     id="editVirtualHost.storeTransactionOpenTimeoutClose"
                                     name="storeTransactionOpenTimeoutClose"
                                     placeHolder="open timeout close time in ms"
                                     promptMessage="Length of time a transaction must be open before the connection is closed"/>
                          </div>
                      </div>
                  </fieldset>
              </div>

              <div class="clear formBox">
                  <fieldset>
                      <legend>House keeping settings</legend>
                      <div class="clear">
                          <div class="formLabel-labelCell tableContainer-labelCell">Check period (ms):</div>
                          <div class="tableContainer-valueCell formLabel-controlCell">
                              <input data-dojo-type="dijit/form/ValidationTextBox"
                                     id="editVirtualHost.housekeepingCheckPeriod"
                                     name="housekeepingCheckPeriod"
                                     placeHolder="house keeping check period in ms"
                                     promptMessage="Frequency with which the housekeeper runs"/>
                          </div>
                      </div>
                      <div class="clear">
                          <div class="formLabel-labelCell tableContainer-labelCell">Thread count:</div>
                          <div class="tableContainer-valueCell formLabel-controlCell">
                              <input data-dojo-type="dijit/form/ValidationTextBox"
                                     id="editVirtualHost.housekeepingThreadCount"
                                     name="housekeepingThreadCount"
                                     placeHolder="house keeping thread count"
                                     promptMessage="Number of threads used to perform housekeeping"/>
                          </div>
                      </div>
                  </fieldset>
              </div>
              <div class="clear"></div>

              <div class="clear">
                  <div class="formLabel-labelCell tableContainer-labelCell">Dead letter queue enabled:</div>
                  <div class="tableContainer-valueCell formLabel-controlCell">
                      <input type="checkbox" id="editVirtualHost.queue.deadLetterQueueEnabled"
                             data-dojo-type="dijit/form/CheckBox"
                             data-dojo-props="name: 'queue.deadLetterQueueEnabled'">
                      </input>
                  </div>
              </div>
              <div class="clear"></div>

              <div class="dijitDialogPaneActionBar">
                  <button data-dojo-type="dijit/form/Button" id="editVirtualHost.saveButton" data-dojo-props="label: 'Save'">Save</button>
                  <button data-dojo-type="dijit/form/Button" id="editVirtualHost.cancelButton" data-dojo-props="label: 'Cancel'" ></button>
              </div>
          </div>
      </form>
  </div>
</div>