parent
a4f9c9b240
commit
e42f5f8879
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
|
||||
<persistence-unit name="web_shared">
|
||||
</persistence-unit>
|
||||
</persistence>
|
||||
@ -0,0 +1,23 @@
|
||||
package de.tvo.database.tables.NLCONNECT;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class Nlconnect implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private Integer m_ncid = null;
|
||||
private String m_nchostname = null;
|
||||
private String m_ncipadress = null;
|
||||
private Integer m_ncport = null;
|
||||
private String m_nctoken = null;
|
||||
private String m_nctype = null;
|
||||
private Integer m_nccountpanel = null;
|
||||
private Integer m_ncactiv = 0;
|
||||
|
||||
|
||||
public Nlconnect() {
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,18 @@
|
||||
package de.tvo.database.tables.NLPANEL;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class Nlpanel implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private Integer m_npid = null;
|
||||
private Integer m_npnanopanelid = null;
|
||||
private Integer m_npmatrixx = null;
|
||||
private Integer m_npmatrixy = null;
|
||||
|
||||
public Nlpanel() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@ -0,0 +1,34 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
|
||||
<!--
|
||||
Must be set to "false" for runtime purposes - especially when using the RISC
|
||||
Client: CapatainCasa uses URL rewriting for session management.
|
||||
|
||||
If session id cookies are passed to the browser, then multiple browser instances
|
||||
will share the same session id cookie - which may have server side problems as
|
||||
consequence.
|
||||
-->
|
||||
<Context cookies='false'>
|
||||
|
||||
|
||||
<!-- MariaDB CRM Verbindung -->
|
||||
<!--
|
||||
<Resource name="jdbc/mariadbcrm"
|
||||
global="jdbc/mariadb"
|
||||
auth="Container"
|
||||
factory="com.zaxxer.hikari.HikariJNDIFactory"
|
||||
type="javax.sql.DataSource"
|
||||
maximumPoolSize="15"
|
||||
minimumIdle="1"
|
||||
dataSource.user="root"
|
||||
dataSource.password="geis97616"
|
||||
driverClassName="org.mariadb.jdbc.Driver"
|
||||
testOnBorrow="true"
|
||||
jdbcUrl="jdbc:mariadb://test.crm.de.geis-group.net/vtigercrm"
|
||||
connectionTestQuery = "select 1"
|
||||
allowPoolSuspension="true"
|
||||
/>
|
||||
|
||||
-->
|
||||
|
||||
</Context>
|
||||
Loading…
Reference in new issue