You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by da...@apache.org on 2010/12/06 15:39:16 UTC

svn commit: r1042660 - in /incubator/aries/trunk/spi-fly/contrib/pilot_using_weavinghook/MyServiceImpl2/src/org/apache/aries/spifly/mysvc/impl2: ./ SPIProviderImpl.java

Author: davidb
Date: Mon Dec  6 14:39:16 2010
New Revision: 1042660

URL: http://svn.apache.org/viewvc?rev=1042660&view=rev
Log:
Second example impl project.

Added:
    incubator/aries/trunk/spi-fly/contrib/pilot_using_weavinghook/MyServiceImpl2/src/org/apache/aries/spifly/mysvc/impl2/
    incubator/aries/trunk/spi-fly/contrib/pilot_using_weavinghook/MyServiceImpl2/src/org/apache/aries/spifly/mysvc/impl2/SPIProviderImpl.java

Added: incubator/aries/trunk/spi-fly/contrib/pilot_using_weavinghook/MyServiceImpl2/src/org/apache/aries/spifly/mysvc/impl2/SPIProviderImpl.java
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/spi-fly/contrib/pilot_using_weavinghook/MyServiceImpl2/src/org/apache/aries/spifly/mysvc/impl2/SPIProviderImpl.java?rev=1042660&view=auto
==============================================================================
--- incubator/aries/trunk/spi-fly/contrib/pilot_using_weavinghook/MyServiceImpl2/src/org/apache/aries/spifly/mysvc/impl2/SPIProviderImpl.java (added)
+++ incubator/aries/trunk/spi-fly/contrib/pilot_using_weavinghook/MyServiceImpl2/src/org/apache/aries/spifly/mysvc/impl2/SPIProviderImpl.java Mon Dec  6 14:39:16 2010
@@ -0,0 +1,28 @@
+/**
+ * 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.spifly.mysvc.impl2;
+
+import org.apache.aries.spifly.mysvc.SPIProvider;
+
+public class SPIProviderImpl extends SPIProvider {
+	@Override
+	public void doit() {
+		System.out.println("Doing it too!");
+	}
+}