All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.cdi.tck.tests.implementation.simple.resource.env.web.xml Maven / Gradle / Ivy

There is a newer version: 2.0.5.SP1
Show newest version
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0"
	xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

	<description>Environment variables for managed beans</description>
	<display-name>Env Injection Tests</display-name>

	<env-entry>
		<env-entry-name>greeting</env-entry-name>
		<env-entry-type>java.lang.String</env-entry-type>
		<env-entry-value>Hello there my friend</env-entry-value>
	</env-entry>

	<session-config>
		<session-timeout>10</session-timeout>
	</session-config>
	<login-config>
		<auth-method>BASIC</auth-method>
	</login-config>

</web-app>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy