aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/aaf/charts/aaf-locate/.helmignore
blob: f0c13194444163d1cba5c67d9e79231a62bc8f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
9 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
<?xml version="1.0" encoding="UTF-8"?>

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxrs="http://cxf.apache.org/blueprint/jaxrs">

    <bean id="indexServlet"
        class="org.onap.ccsdk.features.sdnr.wt.odlux.IndexServlet">
    </bean>

   <service interface="javax.servlet.http.HttpServlet" ref="indexServlet">
        <service-properties>
            <entry key="alias" value="/index2.html" />
        </service-properties>
    </service>
    
<!--     <bean id="rootServlet" -->
<!--         class="com.highstreet.technologies.odlux.RootServlet"> -->
<!--     </bean> -->

<!--    <service interface="javax.servlet.http.HttpServlet" ref="rootServlet"> -->
<!--         <service-properties> -->
<!--             <entry key="alias" value="/" /> -->
<!--         </service-properties> -->
<!--     </service> -->

    <bean id="resFilesServlet"
        class="org.onap.ccsdk.features.sdnr.wt.odlux.ResFilesServlet">
    </bean>

   <service interface="javax.servlet.http.HttpServlet" ref="resFilesServlet">
        <service-properties>
            <entry key="alias" value="/odlux" />
        </service-properties>
    </service>
    
    <bean id="loadersvc" class="org.onap.ccsdk.features.sdnr.wt.odlux.model.bundles.OdluxBundleLoaderImpl"/>
    <service id="serviceRegistration" interface="org.onap.ccsdk.features.sdnr.wt.odlux.model.bundles.OdluxBundleLoader" ref="loadersvc"/>
    
</blueprint>