blob: 7afdf6d13a145fb71c7842bbadfaad6336a3c344 [file] [log] [blame]
Richard S. Halla2dc4512006-04-04 13:17:11 +00001/*
2 * Copyright 2005 The Apache Software Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17package org.apache.felix.bundlerepository;
18
19public class R4Attribute
20{
21 private String m_name = "";
22 private String m_value = "";
23 private boolean m_isMandatory = false;
24
25 public R4Attribute(String name, String value, boolean isMandatory)
26 {
27 m_name = name;
28 m_value = value;
29 m_isMandatory = isMandatory;
30 }
31
32 public String getName()
33 {
34 return m_name;
35 }
36
37 public String getValue()
38 {
39 return m_value;
40 }
41
42 public boolean isMandatory()
43 {
44 return m_isMandatory;
45 }
46}