blob: 0b86b18590b7efbfa006dff40f0e6b599962b699 [file] [log] [blame]
/**
* 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.aries.cdi.test.beans;
import java.util.Map;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import javax.inject.Inject;
import org.apache.aries.cdi.test.interfaces.BundleScoped;
import org.apache.aries.cdi.test.interfaces.FieldInjectedReference;
import org.osgi.framework.ServiceReference;
import org.osgi.service.cdi.annotations.Component;
import org.osgi.service.cdi.annotations.Reference;
import org.osgi.service.cdi.annotations.ReferenceScope;
import org.osgi.service.cdi.annotations.ServiceScope;
@Component(
service = {FieldInjectedBundleScopedImpl.class, FieldInjectedReference.class},
scope = ServiceScope.SINGLETON
)
public class FieldInjectedBundleScopedImpl implements FieldInjectedReference<BundleScoped> {
@Inject
@Reference(target = "(key=value)")
private ServiceReference<BundleScoped> genericReference;
@Inject
@Reference(service = BundleScoped.class, target = "(key=value)")
private Map<String, Object> properties;
@Inject
@Reference(
scope = ReferenceScope.BUNDLE,
service = BundleScoped.class,
target = "(key=value)"
)
@SuppressWarnings("rawtypes")
private ServiceReference rawReference;
@Inject
@Reference
private BundleScoped service;
@Override
public ServiceReference<BundleScoped> getGenericReference() {
return genericReference;
}
@Override
public Map<String, Object> getProperties() {
return properties;
}
@Override
@SuppressWarnings("rawtypes")
public ServiceReference getRawReference() {
return rawReference;
}
@Override
public BundleScoped getService() {
return service;
}
@PostConstruct
private void postConstructed() {
System.out.println("PostConstructed " + this);
}
@PreDestroy
private void preDestroyed() {
System.out.println("PreDestroyed " + this);
}
}