summaryrefslogtreecommitdiffstats
path: root/tags/java-M1-20060518/java/sca/model/src/main/java/org/apache/tuscany/model/assembly/Property.java
blob: 1f238efce638460281e576a35e29a033f7ce3b29 (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
/**
 *
 *  Copyright 2005 The Apache Software Foundation or its licensors, as applicable.
 *
 *  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.
 */
package org.apache.tuscany.model.assembly;



/**
 * A description of a property that can be used to configure a component.
 */
public interface Property extends Extensible {
    // todo should we decalre this as Property<T> where T would be the type of this Property?

    /**
     * Returns the property name.
     * @return the property name
     */
    String getName();

    /**
     * Sets the property name.
     * @param name the property name
     */
    void setName(String name);

    /**
     * Returns the default value of the property.
     * @return the default value of ths property
     */
    Object getDefaultValue();

    /**
     * Sets the default value of the property.
     * @param value the default value of ths property
     */
    void setDefaultValue(Object value);

    /**
     * Returns true if the property allows multiple values.
     * @return true if the property allows multiple values
     */
    boolean isMany();

    /**
     * Sets whether or not the property allows multiple values.
     * @param value true if the property should allow multiple values
     */
    void setMany(boolean value);

    /**
     * Returns true if a value must be supplied for the property.
     * @return true is a value must be supplied for the property
     */
    boolean isRequired();

    /**
     * Sets whether a value must be supplied for the property.
     * For ease of use, it is recommended that a meaningful default value should
     * be supplied for all properties; users should only be required to specify
     * a value if there is no reasonable default.
     *
     * @param value set to true to require that a value be supplied for uses of this property
     */
    void setRequired(boolean value);

    /**
     * Returns the type of this property as used by the runtime.
     * @return the type of this property as used by the runtime
     */
    Class<?> getType();

    /**
     * Sets the type of this property as used by the runtime
     * @param value the type of this property as used by the runtime
     */
    void setType(Class<?> value);

}