summaryrefslogtreecommitdiffstats
path: root/sandbox/old/contrib/topology/src/main/java/org/apache/tuscany/sca/topology/impl/ComponentImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/old/contrib/topology/src/main/java/org/apache/tuscany/sca/topology/impl/ComponentImpl.java')
-rw-r--r--sandbox/old/contrib/topology/src/main/java/org/apache/tuscany/sca/topology/impl/ComponentImpl.java72
1 files changed, 72 insertions, 0 deletions
diff --git a/sandbox/old/contrib/topology/src/main/java/org/apache/tuscany/sca/topology/impl/ComponentImpl.java b/sandbox/old/contrib/topology/src/main/java/org/apache/tuscany/sca/topology/impl/ComponentImpl.java
new file mode 100644
index 0000000000..68364e3420
--- /dev/null
+++ b/sandbox/old/contrib/topology/src/main/java/org/apache/tuscany/sca/topology/impl/ComponentImpl.java
@@ -0,0 +1,72 @@
+/*
+ * 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.tuscany.sca.topology.impl;
+
+import org.apache.tuscany.sca.topology.Component;
+
+/**
+ * Represents the scheme defintion for a domain.
+ *
+ * TBD - just a place holder at the moment
+ *
+ * @version $Rev$ $Date$
+ */
+public class ComponentImpl implements Component {
+
+ private String name;
+ private String domainName;
+
+ /**
+ * Get the component name
+ *
+ * @return
+ */
+ public String getName() {
+ return this.name;
+ }
+
+ /**
+ * Set the component name
+ *
+ * @param name
+ */
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ /**
+ * Get the name of the domain that this component belongs to
+ *
+ * @return
+ */
+ public String getDomainName() {
+ return domainName;
+ }
+
+ /**
+ * Set the name of the domain that this component belongs to
+ *
+ * @param name
+ */
+ public void setDomainName(String domainName) {
+ this.domainName = domainName;
+ }
+
+}