You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2007/11/22 09:35:47 UTC

svn commit: r597332 - /servicemix/trunk/platforms/geronimo/servicemix-service/src/main/java/org/apache/servicemix/geronimo/ServiceUnitReference.java

Author: gnodet
Date: Thu Nov 22 00:35:35 2007
New Revision: 597332

URL: http://svn.apache.org/viewvc?rev=597332&view=rev
Log:
SM-1131: Redeployment fails for Geronimo integration

Added:
    servicemix/trunk/platforms/geronimo/servicemix-service/src/main/java/org/apache/servicemix/geronimo/ServiceUnitReference.java

Added: servicemix/trunk/platforms/geronimo/servicemix-service/src/main/java/org/apache/servicemix/geronimo/ServiceUnitReference.java
URL: http://svn.apache.org/viewvc/servicemix/trunk/platforms/geronimo/servicemix-service/src/main/java/org/apache/servicemix/geronimo/ServiceUnitReference.java?rev=597332&view=auto
==============================================================================
--- servicemix/trunk/platforms/geronimo/servicemix-service/src/main/java/org/apache/servicemix/geronimo/ServiceUnitReference.java (added)
+++ servicemix/trunk/platforms/geronimo/servicemix-service/src/main/java/org/apache/servicemix/geronimo/ServiceUnitReference.java Thu Nov 22 00:35:35 2007
@@ -0,0 +1,63 @@
+/*
+ * 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.servicemix.geronimo;
+
+import java.io.Serializable;
+
+import org.apache.geronimo.kernel.repository.Artifact;
+
+/**
+ * Object which represents a reference between a ServceAssembly and
+ * a ServiceUnit
+ */
+public class ServiceUnitReference implements Serializable {
+
+    /**
+     * The name of the ServiceUnit where the SU
+     * is deployed
+     */
+    private Artifact associaltedServiceUnitName;
+
+    /**
+     * Name of the serviceUnit
+     */
+    private String serviceUnitName;
+
+    /**
+     * installPath of the serviceUnit
+     */
+    private String serviceUnitPath;
+
+    public ServiceUnitReference(Artifact component, String name, String path) {
+        this.associaltedServiceUnitName = component;
+        this.serviceUnitName = name;
+        this.serviceUnitPath = path;
+    }
+
+    public Artifact getAssocialtedServiceUnitName() {
+        return associaltedServiceUnitName;
+    }
+
+    public String getServiceUnitName() {
+        return serviceUnitName;
+    }
+
+    public String getServiceUnitPath() {
+        return serviceUnitPath;
+    }
+
+}