~kirkland/eucalyptus/label-metadata

« back to all changes in this revision

Viewing changes to clc/modules/core/conf/eucalyptus-mule.xml

  • Committer: graziano obertelli
  • Date: 2009-01-07 03:32:35 UTC
  • Revision ID: graziano@cs.ucsb.edu-20090107033235-oxhuexp18v8hg0pw
Tags: 1.4
from CVS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?><!--
 
2
  ~ Software License Agreement (BSD License)
 
3
  ~
 
4
  ~ Copyright (c) 2008, Regents of the University of California
 
5
  ~ All rights reserved.
 
6
  ~
 
7
  ~ Redistribution and use of this software in source and binary forms, with or
 
8
  ~ without modification, are permitted provided that the following conditions
 
9
  ~ are met:
 
10
  ~
 
11
  ~ * Redistributions of source code must retain the above
 
12
  ~   copyright notice, this list of conditions and the
 
13
  ~   following disclaimer.
 
14
  ~
 
15
  ~ * Redistributions in binary form must reproduce the above
 
16
  ~   copyright notice, this list of conditions and the
 
17
  ~   following disclaimer in the documentation and/or other
 
18
  ~   materials provided with the distribution.
 
19
  ~
 
20
  ~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
21
  ~ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
22
  ~ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
23
  ~ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
24
  ~ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
25
  ~ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
26
  ~ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
27
  ~ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
28
  ~ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
29
  ~ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
30
  ~ POSSIBILITY OF SUCH DAMAGE.
 
31
  ~
 
32
  ~ Author: Chris Grzegorczyk grze@cs.ucsb.edu
 
33
  -->
 
34
 
 
35
<mule xmlns="http://www.mulesource.org/schema/mule/core/2.0"
 
36
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
37
      xmlns:spring="http://www.springframework.org/schema/beans"
 
38
      xmlns:vm="http://www.mulesource.org/schema/mule/vm/2.0"
 
39
      xmlns:euca="http://eucalyptus.cs.ucsb.edu/schema/cloud/1.0"
 
40
      xsi:schemaLocation="
 
41
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
 
42
       http://www.mulesource.org/schema/mule/core/2.0 http://www.mulesource.org/schema/mule/core/2.0/mule.xsd
 
43
       http://www.mulesource.org/schema/mule/vm/2.0 http://www.mulesource.org/schema/mule/vm/2.0/mule-vm.xsd
 
44
       http://eucalyptus.cs.ucsb.edu/schema/cloud/1.0 http://eucalyptus.cs.ucsb.edu/schema/cloud/1.0/euca.xsd">
 
45
 
 
46
    <euca:connector name="axis2" default-conf="${euca.conf.dir}/axis2.xml" default-wssec-policy="${euca.conf.dir}/policy.xml"/>
 
47
 
 
48
    <!--===========  This enables eucalyptus ===========-->
 
49
    <spring:beans>
 
50
        <spring:import resource="classpath:eucalyptus-services.xml"/>
 
51
        <spring:import resource="classpath:eucalyptus-interface.xml"/>
 
52
        <spring:import resource="classpath:eucalyptus-userdata.xml"/>
 
53
        <spring:import resource="classpath:eucalyptus-verification.xml"/>
 
54
        <spring:import resource="classpath:eucalyptus-runtime.xml"/>
 
55
    </spring:beans>
 
56
 
 
57
    <!--===========  This enables walrus ===========-->
 
58
    <spring:beans>
 
59
        <spring:import resource="classpath:walrus-services.xml"/>
 
60
        <spring:import resource="classpath:walrus-model.xml"/>
 
61
    </spring:beans>
 
62
 
 
63
</mule>
 
64