/* * 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.runtime.core.test.components.context; import org.apache.felix.ipojo.annotations.Component; import org.apache.felix.ipojo.annotations.Provides; import org.apache.felix.ipojo.annotations.StaticServiceProperty; import org.apache.felix.ipojo.runtime.core.test.services.FooService; import java.util.Properties; /** * A simple foo provider with id 1 */ @Component @Provides(properties = @StaticServiceProperty(name="id", value = "1", type = "string")) // We don't instantiate it here as it may break other tests. public class Provider1 implements FooService { @Override public boolean foo() { return false; } @Override public Properties fooProps() { return null; } @Override public Boolean getObject() { return null; } @Override public boolean getBoolean() { return false; } @Override public int getInt() { // The id. return 1; } @Override public long getLong() { // The id. return 1; } @Override public double getDouble() { // The id return 1; } }