blob: f9c4fae8bfb7a3f9dbbd6d4ac67e682022113e84 [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.aries.blueprint.reflect;
import org.apache.aries.blueprint.mutable.MutableBeanArgument;
import org.osgi.service.blueprint.reflect.BeanArgument;
import org.osgi.service.blueprint.reflect.Metadata;
/**
* Implementation of BeanArgument
*
* @version $Rev: 896324 $, $Date: 2010-01-06 06:05:04 +0000 (Wed, 06 Jan 2010) $
*/
public class BeanArgumentImpl implements MutableBeanArgument {
private Metadata value;
private String valueType;
private int index = -1;
public BeanArgumentImpl() {
}
public BeanArgumentImpl(Metadata value, String valueType, int index) {
this.value = value;
this.valueType = valueType;
this.index = index;
}
public BeanArgumentImpl(BeanArgument source) {
value = MetadataUtil.cloneMetadata(source.getValue());
valueType = source.getValueType();
index = source.getIndex();
}
public Metadata getValue() {
return value;
}
public void setValue(Metadata value) {
this.value = value;
}
public String getValueType() {
return valueType;
}
public void setValueType(String valueType) {
this.valueType = valueType;
}
public int getIndex() {
return index;
}
public void setIndex(int index) {
this.index = index;
}
@Override
public String toString() {
return "BeanArgument[" +
"value=" + value +
", valueType='" + valueType + '\'' +
", index=" + index +
']';
}
}