| 1234567891011121314151617 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
- <hibernate-mapping package="id.co.hanoman.service.config">
- <class name="ServerPort" table="server_port" lazy="false" >
-
- <id name="adaptorId" column="adaptor_id" type="string" length="256" />
-
- <property name="port" column="port" type="integer" not-null="false"/>
- <!-- property name="type" column="type" type="string" length="2000" not-null="false" /-->
- <property name="server" column="server" type="string" length="256" not-null="false" />
- <property name="group" column="group" type="string" length="256" not-null="false" />
-
- </class>
-
- </hibernate-mapping>
|