summaryrefslogtreecommitdiff
path: root/qpid/java/broker/src/main/java/org/apache/qpid/qmf/QMFProperty.java
blob: 5748722afe9b21621f1ec8b43b72d9d62274bde7 (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
/*
 *
 * 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.
 *
 */

package org.apache.qpid.qmf;

import org.apache.qpid.transport.codec.Encoder;

import java.util.Map;
import java.util.HashMap;
import java.util.LinkedHashMap;

public class QMFProperty
{
    private final Map<String, Object> _map = new LinkedHashMap<String, Object>();
    private static final String NAME = "name";
    private static final String TYPE = "type";
    private static final String ACCESS = "access";
    private static final String INDEX = "index";
    private static final String OPTIONAL = "optional";
    private static final String REF_PACKAGE = "refPackage";
    private static final String REF_CLASS = "refClass";
    private static final String UNIT = "unit";
    private static final String MIN = "min";
    private static final String MAX = "max";
    private static final String MAX_LENGTH = "maxlen";
    private static final String DESCRIPTION = "desc";


    public static enum AccessCode
    {
        RC,
        RW,
        RO;

        public int codeValue()
        {
            return ordinal()+1;
        }
    }

    public QMFProperty(String name, QMFType type, AccessCode accessCode, boolean index, boolean optional)
    {
        _map.put(NAME, name);
        _map.put(TYPE, type.codeValue());
        _map.put(ACCESS, accessCode.codeValue());
        _map.put(INDEX, index ? 1 : 0);
        _map.put(OPTIONAL, optional ? 1 :0);
    }


    public void setQMFClass(QMFClass qmfClass)
    {
 /*       _map.put(REF_CLASS, qmfClass.getName());
        _map.put(REF_PACKAGE, qmfClass.getPackage().getName());*/
    }

    public void setReferencedClass(String refClass)
    {
        _map.put(REF_CLASS, refClass);
    }

    public void setReferencedPackage(String refPackage)
    {
        _map.put(REF_CLASS, refPackage);
    }


    public String getName()
    {
        return (String) _map.get(NAME);
    }


    public void setUnit(String unit)
    {
        _map.put(UNIT, unit);
    }

    public void setMin(Number min)
    {
        _map.put(MIN, min);
    }

    public void setMax(Number max)
    {
        _map.put(MAX, max);
    }

    public void setMaxLength(int maxlen)
    {
        _map.put(MAX_LENGTH, maxlen);
    }


    public void setDescription(String description)
    {
        _map.put(DESCRIPTION, description);
    }

    public void encode(Encoder encoder)
    {
        encoder.writeMap(_map);
    }

}