ENTAXY-248 release 1.8.1
This commit is contained in:
@ -0,0 +1,93 @@
|
||||
<!--
|
||||
~~~~~~licensing~~~~~~
|
||||
artemis-plugin-entaxy
|
||||
==========
|
||||
Copyright (C) 2020 - 2021 EmDev LLC
|
||||
==========
|
||||
Licensed 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.
|
||||
~~~~~~/licensing~~~~~~
|
||||
-->
|
||||
<!--
|
||||
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.
|
||||
Architecture
|
||||
-->
|
||||
<form class="form-horizontal artemis-preferences-form" ng-controller="Artemis.PreferencesController">
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label" for="artemisUserName">
|
||||
Artemis user name
|
||||
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="The user name to be used when connecting to the broker"></span>
|
||||
</label>
|
||||
<div class="col-md-6">
|
||||
<input id="artemisUserName" type="text" class="form-control" ng-model="artemisUserName"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label" for="artemisPassword">
|
||||
Artemis password
|
||||
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="The user name to be used when connecting to the broker"></span>
|
||||
</label>
|
||||
<div class="col-md-6">
|
||||
<input id="artemisPassword" type="password" class="form-control" ng-model="artemisPassword"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label" for="artemisDLQ">
|
||||
Dead-letter address regex
|
||||
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="A regular expression to match one or more dead-letter addresses"></span>
|
||||
</label>
|
||||
<div class="col-md-6">
|
||||
<input type="text" id="artemisDLQ" ng-model="artemisDLQ">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-md-2 control-label" for="artemisExpiryQueue">
|
||||
Expiry address regex
|
||||
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="A regular expression to match one or more expiry addresses"></span>
|
||||
</label>
|
||||
<div class="col-md-6">
|
||||
<input type="text" id="artemisExpiryQueue" ng-model="artemisExpiryQueue">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div class="form-group">
|
||||
<label class="col-md-2 control-label" for="artemisBrowseBytesMessages">
|
||||
Display message body as
|
||||
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="Browsing byte messages should display the message body as"></span>
|
||||
</label>
|
||||
<div class="col-md-6">
|
||||
<select id="artemisBrowseBytesMessages"
|
||||
ng-model="artemisBrowseBytesMessages"
|
||||
ng-options="key for (key, value) in messageBodyDisplayOptions"
|
||||
ng-selected="artemisBrowseBytesMessages === value">
|
||||
</select>
|
||||
</div>
|
||||
</div>-->
|
||||
|
||||
</form>
|
Reference in New Issue
Block a user