This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm | |
http://java.sun.com/xml/ns/persistence/orm_2_0.xsd" | |
version="2.0"> | |
<persistence-unit-metadata> | |
<persistence-unit-defaults> | |
<schema>MYSCHEMA</schema> | |
</persistence-unit-defaults> | |
</persistence-unit-metadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.eclipse.persistence.logging; | |
import java.util.HashMap; | |
import java.util.Map; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import org.springframework.util.StringUtils; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.enlosdetalles.spring; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletResponse; | |
import org.springframework.js.ajax.SpringJavascriptAjaxHandler; | |
/** | |
* Ajax handler for Apache Trinidad. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
description "MediaTomb UPnP media server" | |
author "Daniel van Vugt <vanvugt in launchpad>" | |
start on (local-filesystems and net-device-up IFACE=wlan0) | |
stop on runlevel [!2345] | |
respawn | |
env CONFIGXML=/etc/mediatomb/config.xml | |
env LOGFILE=/var/log/mediatomb.log | |
env DEFAULT=/etc/default/mediatomb |