-
Notifications
You must be signed in to change notification settings - Fork 18
/
IMPI.hbm.xml
27 lines (24 loc) · 1.05 KB
/
IMPI.hbm.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" >
<hibernate-mapping>
<class name="de.fhg.fokus.hss.db.model.IMPI" table="impi">
<id name="id">
<generator class="native"/>
</id>
<property name="identity" type="string" not-null="true"/>
<property name="k" type="binary" not-null="true"/>
<property name="auth_scheme" type="int" not-null="true"/>
<property name="default_auth_scheme" type="int" not-null="true"/>
<property name="amf" type="binary" not-null="true"/>
<property name="op" type="binary" not-null="true"/>
<property name="opc" type="binary" not-null="true"/>
<property name="sqn" type="string" not-null="true"/>
<property name="ip" type="string"/>
<property name="id_imsu" type="java.lang.Integer" />
<property name="line_identifier" type="string"/>
<property name="zh_uicc_type" type="int"/>
<property name="zh_key_life_time" type="int"/>
<property name="zh_default_auth_scheme" type="int"/>
</class>
</hibernate-mapping>