summaryrefslogtreecommitdiff
path: root/smcc/src/test/resources/at/gv/egiz/smcc/spring/PropertyEditorTest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'smcc/src/test/resources/at/gv/egiz/smcc/spring/PropertyEditorTest.xml')
-rw-r--r--smcc/src/test/resources/at/gv/egiz/smcc/spring/PropertyEditorTest.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/smcc/src/test/resources/at/gv/egiz/smcc/spring/PropertyEditorTest.xml b/smcc/src/test/resources/at/gv/egiz/smcc/spring/PropertyEditorTest.xml
new file mode 100644
index 00000000..32d9d58a
--- /dev/null
+++ b/smcc/src/test/resources/at/gv/egiz/smcc/spring/PropertyEditorTest.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ Copyright 2008 Federal Chancellery Austria and Graz University of
+ Technology Licensed 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.
+ -->
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
+ xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
+
+ <bean name="testBean" class="at.gv.egiz.smcc.test.spring.ByteArrayPropertyDependable">
+ <property name="bytes">
+ <value>
+ 00:01:02:03:04:05:06:07:08:09:0A:0B:0C:0D:0E:0F
+ f0-e0-d0-c0-b0-a0-90-80-70-60-50-40-30-20-10-00
+ </value>
+ </property>
+ </bean>
+
+ <bean class="org.springframework.beans.factory.config.CustomEditorConfigurer">
+ <property name="propertyEditorRegistrars">
+ <list>
+ <bean class="at.gv.egiz.smcc.test.spring.ByteArrayPropertyEditorRegistrar"></bean>
+ </list>
+ </property>
+ </bean>
+
+</beans> \ No newline at end of file