You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ja...@apache.org on 2007/09/26 19:56:14 UTC

svn commit: r579736 - in /ofbiz/trunk/applications/party/entitydef: entitygroup.xml entitymodel.xml

Author: jaz
Date: Wed Sep 26 10:56:13 2007
New Revision: 579736

URL: http://svn.apache.org/viewvc?rev=579736&view=rev
Log:
added new entity for email address verification

Modified:
    ofbiz/trunk/applications/party/entitydef/entitygroup.xml
    ofbiz/trunk/applications/party/entitydef/entitymodel.xml

Modified: ofbiz/trunk/applications/party/entitydef/entitygroup.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/entitydef/entitygroup.xml?rev=579736&r1=579735&r2=579736&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/entitydef/entitygroup.xml (original)
+++ ofbiz/trunk/applications/party/entitydef/entitygroup.xml Wed Sep 26 10:56:13 2007
@@ -72,6 +72,7 @@
     <entity-group group="org.ofbiz" entity="ContactMechType" />
     <entity-group group="org.ofbiz" entity="ContactMechTypeAttr" />
     <entity-group group="org.ofbiz" entity="ContactMechTypePurpose" />
+    <entity-group group="org.ofbiz" entity="EmailAddressVerification" />    
     <entity-group group="org.ofbiz" entity="PartyContactDetailByPurpose" />
     <entity-group group="org.ofbiz" entity="PartyContactMech" />
     <entity-group group="org.ofbiz" entity="PartyContactMechPurpose" />

Modified: ofbiz/trunk/applications/party/entitydef/entitymodel.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/entitydef/entitymodel.xml?rev=579736&r1=579735&r2=579736&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/entitydef/entitymodel.xml (original)
+++ ofbiz/trunk/applications/party/entitydef/entitymodel.xml Wed Sep 26 10:56:13 2007
@@ -825,6 +825,15 @@
         <key-map field-name="contactMechPurposeTypeId"/>
       </relation>
     </entity>
+    <entity entity-name="EmailAddressVerification"
+            package-name="org.ofbiz.party.contact"
+            title="Email Address Verification Entity">
+        <description>Holds hashes for email address verification</description>
+        <field name="emailAddress" type="id-vlong-ne"></field>
+        <field name="verifyHash" type="value"></field>
+        <field name="expireDate" type="date-time"></field>
+        <prim-key field="emailAddress"/>
+    </entity>
     <view-entity entity-name="PartyContactDetailByPurpose"
         package-name="org.ofbiz.party.contact"
         title="Party Contact Purpose View Entity">