blob: 6af31f61a3958400d17d993bf2e06a425d0bb25a [file] [log] [blame]
/*
* 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.felix.ipojo.architecture;
import org.apache.felix.ipojo.ConfigurationException;
import org.apache.felix.ipojo.util.Property;
import org.osgi.framework.BundleContext;
/**
* Property Information.
*
* @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
*/
public class PropertyDescription {
/**
* Name of the property.
*/
private String m_name;
/**
* Type of the property.
*/
private String m_type;
/**
* Default value of the property.
*/
private String m_value = null;
/**
* Immutable property flag
* If set to <code>true</code>, the property cannot be override by the instance configuration.
* Moreover, immutable properties are exposed on the factory service too.
*/
private boolean m_immutable = false;
/**
* A property is mandatory. So, either the component type description provides a value or
* the instance configuration must provide a value. Immutable properties are mandatories.
*/
private boolean m_isMandatory = false;
/**
* Constructor.
*
* @param name the name of the property
* @param type the type of the property
* @param value the default value of the property, can be <code>null</code>
*/
public PropertyDescription(String name, String type, String value) {
m_name = name;
m_type = type;
m_value = value;
}
/**
* Constructor.
*
* @param name the name of the property
* @param type the type of the property
* @param value the default value (String form) of the property, can be <code>null</code>
* @param immutable the property is immutable.
*/
public PropertyDescription(String name, String type, String value, boolean immutable) {
m_name = name;
m_type = type;
m_value = value;
m_immutable = immutable;
}
/**
* Gets the current property name.
* @return the property name.
*/
public String getName() {
return m_name;
}
/**
* Gets the current property type.
* @return the property type.
*/
public String getType() {
return m_type;
}
/**
* Gets the current property value.
* @return the default value for the property,
* <code>null</code> if the property hasn't a value..
*/
public String getValue() {
return m_value;
}
/**
* Is the property immutable.
* @return <code>true</code> if the property is immutable.
*/
public boolean isImmutable() {
return m_immutable;
}
/**
* Sets the property as mandatory.
*/
public void setMandatory() {
m_isMandatory = true;
}
/**
* Is the property mandatory.
* @return <code>true</code> if the property is mandatory,
* <code>false</code> otherwise.
*/
public boolean isMandatory() {
return m_isMandatory;
}
/**
* Gets the object value of the current immutable property.
* @param context the bundle context to use to load classes.
* @return the object value of the current property or <code>
* null</code> if the current value is <code>null</code>.
*/
public Object getObjectValue(BundleContext context) {
if (m_value == null) {
return null;
}
Class type = null;
try {
type = Property.computeType(m_type, context);
return Property.create(type, m_value);
} catch (ConfigurationException e) {
return m_value; // Cannot create the object.
}
}
}