Remove deprecated uuid.hex

git-svn-id: https://svn.jboss.org/repos/hibernate/trunk/Hibernate3/doc@7707 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
JongDae Kim 2005-07-31 05:34:55 +00:00
parent 59938f9ecf
commit 879e406844
3 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@
<emphasis>component</emphasis>의 개념은 Hibernate에서 다른 용도로 몇몇 다른 컨텍스트들 내에서 재사용된다.
</para>
<sect1 id="components-dependentobjects">
<sect1 id="components-dependentobjects" revision="2" >
<title>종속 객체들</title>
<para>
@ -76,7 +76,7 @@
<programlisting><![CDATA[<class name="eg.Person" table="person">
<id name="Key" column="pid" type="string">
<generator class="uuid.hex"/>
<generator class="uuid"/>
</id>
<property name="birthday" type="date"/>
<component name="Name" class="eg.Name"> <!-- class attribute optional -->
@ -115,7 +115,7 @@
<programlisting><![CDATA[<class name="eg.Person" table="person">
<id name="Key" column="pid" type="string">
<generator class="uuid.hex"/>
<generator class="uuid"/>
</id>
<property name="birthday" type="date"/>
<component name="Name" class="eg.Name" unique="true">

View File

@ -593,7 +593,7 @@ alter table line_items
</class>]]></programlisting>
</sect2>
<sect2 id="example-mappings-association-alternatekeys" >
<sect2 id="example-mappings-association-alternatekeys" revision="2">
<title>대체 키들에 대한 연관들</title>
<programlisting><![CDATA[<class name="Person">
@ -634,7 +634,7 @@ alter table line_items
<class name="Account">
<id name="accountId" length="32">
<generator class="uuid.hex"/>
<generator class="uuid"/>
</id>
<many-to-one name="user"

View File

@ -333,7 +333,7 @@ public class Cat {
</sect1>
<sect1 id="quickstart-mapping" revision="1">
<sect1 id="quickstart-mapping" revision="2">
<title>cat 매핑하기</title>
<para>
@ -355,7 +355,7 @@ public class Cat {
generated by Hibernate with the UUID pattern. -->
<id name="id" type="string" unsaved-value="null" >
<column name="CAT_ID" sql-type="char(32)" not-null="true"/>
<generator class="uuid.hex"/>
<generator class="uuid"/>
</id>
<!-- A cat has to have a name, but it shouldn' be too long. -->