|
@@ -0,0 +1,65 @@
|
|
|
+<!--
|
|
|
+ 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.
|
|
|
+-->
|
|
|
+<view>
|
|
|
+ <name>PROPERTY</name>
|
|
|
+ <label>Property</label>
|
|
|
+ <version>0.1.0</version>
|
|
|
+ <parameter>
|
|
|
+ <name>name.description</name>
|
|
|
+ <description>Name and description</description>
|
|
|
+ <required>true</required>
|
|
|
+ </parameter>
|
|
|
+ <parameter>
|
|
|
+ <name>name.label.description</name>
|
|
|
+ <description>Name, label and description</description>
|
|
|
+ <label>NameLabelDesc</label>
|
|
|
+ <required>true</required>
|
|
|
+ </parameter>
|
|
|
+ <parameter>
|
|
|
+ <name>name.label.descr.default</name>
|
|
|
+ <description>Name, label, description and default</description>
|
|
|
+ <label>NameLabelDescDefault</label>
|
|
|
+ <default-value>thedefaultvalue</default-value>
|
|
|
+ <required>true</required>
|
|
|
+ </parameter>
|
|
|
+ <parameter>
|
|
|
+ <name>name.label.descr.default.place</name>
|
|
|
+ <description>Name, label, description, default and placeholder</description>
|
|
|
+ <label>NameLabelDescDefaultPlace</label>
|
|
|
+ <placeholder>this is placeholder text but you should see default</placeholder>
|
|
|
+ <default-value>youshouldseethisdefault</default-value>
|
|
|
+ <required>true</required>
|
|
|
+ </parameter>
|
|
|
+ <parameter>
|
|
|
+ <name>name.label.descr.place</name>
|
|
|
+ <description>Name, label, description and placeholder</description>
|
|
|
+ <label>NameLabelDescPlace</label>
|
|
|
+ <placeholder>this is some placeholder text</placeholder>
|
|
|
+ <required>true</required>
|
|
|
+ </parameter>
|
|
|
+ <parameter>
|
|
|
+ <name>name.descr.place</name>
|
|
|
+ <description>Name, description and placeholder</description>
|
|
|
+ <placeholder>this is the placeholder name.descr.place text</placeholder>
|
|
|
+ <required>true</required>
|
|
|
+ </parameter>
|
|
|
+
|
|
|
+ <resource>
|
|
|
+ <name>properties</name>
|
|
|
+ <service-class>org.apache.ambari.view.property.PropertyService</service-class>
|
|
|
+ </resource>
|
|
|
+</view>
|