You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2017/02/02 09:49:44 UTC

svn commit: r1781362 - /felix/trunk/osgi-r7/scr/src/main/java/org/apache/felix/scr/impl/inject/BaseParameter.java

Author: cziegeler
Date: Thu Feb  2 09:49:44 2017
New Revision: 1781362

URL: http://svn.apache.org/viewvc?rev=1781362&view=rev
Log:
FELIX--5457 : Logger Support. Support bind/unbind methods

Added:
    felix/trunk/osgi-r7/scr/src/main/java/org/apache/felix/scr/impl/inject/BaseParameter.java   (with props)

Added: felix/trunk/osgi-r7/scr/src/main/java/org/apache/felix/scr/impl/inject/BaseParameter.java
URL: http://svn.apache.org/viewvc/felix/trunk/osgi-r7/scr/src/main/java/org/apache/felix/scr/impl/inject/BaseParameter.java?rev=1781362&view=auto
==============================================================================
--- felix/trunk/osgi-r7/scr/src/main/java/org/apache/felix/scr/impl/inject/BaseParameter.java (added)
+++ felix/trunk/osgi-r7/scr/src/main/java/org/apache/felix/scr/impl/inject/BaseParameter.java Thu Feb  2 09:49:44 2017
@@ -0,0 +1,43 @@
+/*
+ * 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.scr.impl.inject;
+
+import org.apache.felix.scr.impl.helper.SimpleLogger;
+import org.apache.felix.scr.impl.manager.ComponentContextImpl;
+
+public abstract class BaseParameter
+{
+    private final ComponentContextImpl<?> m_componentContext;
+
+    public BaseParameter( ComponentContextImpl<?> componentContext )
+    {
+        this.m_componentContext = componentContext;
+    }
+
+
+    public ComponentContextImpl<?> getComponentContext()
+    {
+        return m_componentContext;
+    }
+
+    public SimpleLogger getLogger()
+    {
+        return m_componentContext.getLogger();
+    }
+}
\ No newline at end of file

Propchange: felix/trunk/osgi-r7/scr/src/main/java/org/apache/felix/scr/impl/inject/BaseParameter.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: felix/trunk/osgi-r7/scr/src/main/java/org/apache/felix/scr/impl/inject/BaseParameter.java
------------------------------------------------------------------------------
    svn:keywords = author date id revision rev url