summaryrefslogtreecommitdiffstats
path: root/sandbox/bdaniel/propertyTest/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/bdaniel/propertyTest/src/main')
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/java/testing/ABCDComponent.java9
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/java/testing/ABCDComponentImpl.java36
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/java/testing/ABComponent.java10
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/java/testing/ABComponentImpl.java63
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/java/testing/CDComponent.java11
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/java/testing/CDComponentImpl.java66
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/java/testing/OverrideService.java5
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/java/testing/OverrideServiceImpl.java5
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/java/testing/PropertyService.java5
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/resources/META-INF/sca/default.scdl69
-rw-r--r--sandbox/bdaniel/propertyTest/src/main/resources/META-INF/sca/fileProperty.txt1
11 files changed, 280 insertions, 0 deletions
diff --git a/sandbox/bdaniel/propertyTest/src/main/java/testing/ABCDComponent.java b/sandbox/bdaniel/propertyTest/src/main/java/testing/ABCDComponent.java
new file mode 100644
index 0000000000..c3657adc4e
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/java/testing/ABCDComponent.java
@@ -0,0 +1,9 @@
+package testing;
+
+public interface ABCDComponent {
+ String getA();
+ String getB();
+ String getC();
+ String getD();
+}
+
diff --git a/sandbox/bdaniel/propertyTest/src/main/java/testing/ABCDComponentImpl.java b/sandbox/bdaniel/propertyTest/src/main/java/testing/ABCDComponentImpl.java
new file mode 100644
index 0000000000..ef979297b5
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/java/testing/ABCDComponentImpl.java
@@ -0,0 +1,36 @@
+package testing;
+
+import org.osoa.sca.annotations.Reference;
+import org.osoa.sca.annotations.Scope;
+
+@Scope("MODULE")
+public class ABCDComponentImpl implements ABCDComponent {
+ private ABComponent abComponent;
+ private CDComponent cdComponent;
+
+ @Reference
+ public void setAb(ABComponent component) {
+ this.abComponent = component;
+ }
+
+ @Reference
+ public void setCd(CDComponent component) {
+ this.cdComponent = component;
+ }
+
+ public String getA() {
+ return this.abComponent.getA();
+ }
+
+ public String getB() {
+ return this.abComponent.getB();
+ }
+
+ public String getC() {
+ return this.cdComponent.getC();
+ }
+
+ public String getD() {
+ return this.cdComponent.getD();
+ }
+}
diff --git a/sandbox/bdaniel/propertyTest/src/main/java/testing/ABComponent.java b/sandbox/bdaniel/propertyTest/src/main/java/testing/ABComponent.java
new file mode 100644
index 0000000000..c760883b5a
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/java/testing/ABComponent.java
@@ -0,0 +1,10 @@
+package testing;
+
+public interface ABComponent {
+
+ String getA();
+ String getB();
+ String getZ();
+ int getIntValue();
+ String getF();
+}
diff --git a/sandbox/bdaniel/propertyTest/src/main/java/testing/ABComponentImpl.java b/sandbox/bdaniel/propertyTest/src/main/java/testing/ABComponentImpl.java
new file mode 100644
index 0000000000..8a0de56400
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/java/testing/ABComponentImpl.java
@@ -0,0 +1,63 @@
+package testing;
+
+import org.osoa.sca.annotations.Property;
+
+public class ABComponentImpl implements ABComponent {
+
+ private String aProperty;
+ private String bProperty;
+ private int intValue;
+ // private Collection manyProp;
+ private String zProperty;
+ private String fProperty;
+
+ @Property(name="xpath")
+ public void setZProperty(final String value) {
+ this.zProperty = value;
+ }
+
+// @Property(name="foobar")
+// public void setCollectionProperty(final Collection value) {
+// this.manyProp = value;
+// }
+
+ @Property
+ public void setA(final String A) {
+ this.aProperty = A;
+ }
+
+ @Property
+ public void setB(final String B) {
+ this.bProperty = B;
+ }
+
+ @Property
+ public void setF(final String F) {
+ this.fProperty = F;
+ }
+
+ @Property
+ public void setOne(final int value) {
+ this.intValue = value;
+ }
+
+ public String getA() {
+ return this.aProperty;
+ }
+
+ public String getB() {
+ return this.bProperty;
+ }
+
+ public int getIntValue() {
+ return this.intValue;
+ }
+
+ public String getZ() {
+ return this.zProperty;
+ }
+
+ public String getF() {
+ return this.fProperty;
+ }
+}
diff --git a/sandbox/bdaniel/propertyTest/src/main/java/testing/CDComponent.java b/sandbox/bdaniel/propertyTest/src/main/java/testing/CDComponent.java
new file mode 100644
index 0000000000..3972cad23e
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/java/testing/CDComponent.java
@@ -0,0 +1,11 @@
+package testing;
+
+public interface CDComponent {
+
+ String getC();
+ String getC2();
+ String getD();
+ String getNoSource();
+ String getFileProperty();
+ int getOverrideValue();
+}
diff --git a/sandbox/bdaniel/propertyTest/src/main/java/testing/CDComponentImpl.java b/sandbox/bdaniel/propertyTest/src/main/java/testing/CDComponentImpl.java
new file mode 100644
index 0000000000..5dbd84de40
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/java/testing/CDComponentImpl.java
@@ -0,0 +1,66 @@
+package testing;
+
+import org.osoa.sca.annotations.Property;
+
+public class CDComponentImpl implements CDComponent {
+
+ private String cProperty;
+ private String dProperty;
+ private String nosource;
+ private String fileProperty;
+ private int overrideNumber;
+ private String cProperty2;
+
+ @Property(name="nonFileProperty")
+ public void setC2(final String value) {
+ this.cProperty2 = value;
+ }
+ @Property(name="two")
+ public void setOverrideNumber(final int value) {
+ this.overrideNumber = value;
+ }
+
+ @Property(name="fileProperty")
+ public void setFileProp(final String value) {
+ this.fileProperty = value;
+ }
+ @Property
+ public void setC(final String C) {
+ this.cProperty = C;
+ }
+
+ @Property
+ public void setD(final String D) {
+ this.dProperty = D;
+ }
+
+ @Property
+ public void setNosource(final String value) {
+ this.nosource = value;
+ }
+
+ public String getFileProperty() {
+ return this.fileProperty;
+ }
+
+ public String getC() {
+ return this.cProperty;
+ }
+
+ public String getC2() {
+ return this.cProperty2;
+ }
+
+ public String getD() {
+ return this.dProperty;
+ }
+
+ public String getNoSource() {
+ return this.nosource;
+ }
+
+ public int getOverrideValue() {
+ return this.overrideNumber;
+ }
+}
+
diff --git a/sandbox/bdaniel/propertyTest/src/main/java/testing/OverrideService.java b/sandbox/bdaniel/propertyTest/src/main/java/testing/OverrideService.java
new file mode 100644
index 0000000000..25e71f11f0
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/java/testing/OverrideService.java
@@ -0,0 +1,5 @@
+package testing;
+
+public interface OverrideService {
+
+}
diff --git a/sandbox/bdaniel/propertyTest/src/main/java/testing/OverrideServiceImpl.java b/sandbox/bdaniel/propertyTest/src/main/java/testing/OverrideServiceImpl.java
new file mode 100644
index 0000000000..3a5f3e11c2
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/java/testing/OverrideServiceImpl.java
@@ -0,0 +1,5 @@
+package testing;
+
+public class OverrideServiceImpl implements OverrideService {
+
+}
diff --git a/sandbox/bdaniel/propertyTest/src/main/java/testing/PropertyService.java b/sandbox/bdaniel/propertyTest/src/main/java/testing/PropertyService.java
new file mode 100644
index 0000000000..4e81982819
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/java/testing/PropertyService.java
@@ -0,0 +1,5 @@
+package testing;
+
+public interface PropertyService {
+
+}
diff --git a/sandbox/bdaniel/propertyTest/src/main/resources/META-INF/sca/default.scdl b/sandbox/bdaniel/propertyTest/src/main/resources/META-INF/sca/default.scdl
new file mode 100644
index 0000000000..00340fc1f9
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/resources/META-INF/sca/default.scdl
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+ xmlns:foo="http://foo"
+ name="PropertyTest">
+
+ <!-- <property name="manyValued" type="xsd:string" many="true"/> -->
+
+ <property name="number" type="xsd:int">1</property>
+
+ <property name="complex" type="foo:MyComplexType">
+ <foo:a>a</foo:a>
+ <foo:b>b</foo:b>
+ <foo:c>c</foo:c>
+ <foo:d>d</foo:d>
+ <foo:x>
+ <y>y</y>
+ <z>z</z>
+ </foo:x>
+
+ </property>
+
+ <component name="ABCDComponent">
+ <implementation.java class="testing.ABCDComponentImpl"/>
+ <reference name="ab">ABComponent</reference>
+ <reference name="cd">CDComponent</reference>
+ </component>
+
+ <component name="ABComponent">
+ <implementation.java class="testing.ABComponentImpl"/>
+ <property name="a" source="$complex/foo:a"/>
+ <property name="b" source="$complex/foo:b"/>
+ <property name="f" source="$complex/foo:a">f</property>
+ <property name="xpath" source="$complex/foo:x/*[local-name()='z']"/>
+ <property name="one" source="$number"/>
+ </component>
+
+ <component name="CDComponent">
+ <implementation.java class="testing.CDComponentImpl"/>
+ <property name="c" source="$complex/foo:c"/>
+ <property name="d" source="$complex/foo:d"/>
+ <property name="nosource">aValue</property>
+ <property name="fileProperty" file="META-INF/sca/fileProperty.txt"/>
+ <property name="nonFileProperty" file="META-INF/sca/fileProperty.txt" source="$complex/foo:c"/>
+ <property name="two" source="$number">2</property>
+ </component>
+
+<!-- <component name="Override">
+ <implementation.composite name="OverrideComposite" scdlLocation="override.scdl"/>
+ </component>
+ -->
+</composite>
diff --git a/sandbox/bdaniel/propertyTest/src/main/resources/META-INF/sca/fileProperty.txt b/sandbox/bdaniel/propertyTest/src/main/resources/META-INF/sca/fileProperty.txt
new file mode 100644
index 0000000000..4e22b1bac4
--- /dev/null
+++ b/sandbox/bdaniel/propertyTest/src/main/resources/META-INF/sca/fileProperty.txt
@@ -0,0 +1 @@
+<filePropertyTest>fileValue</filePropertyTest>