Comparing ColdFusion Struct Equality With Java

<!--- Create one with hotness 10. --->
<cfset objGirlA = StructNew() />
<cfset objGirlA.Name = "Sarah" />
<cfset objGirlA.Hotness = CreateObject( "component", "Girl" ).Init( 
	hotness = 10 
	) />
 
<!--- Create one with hotness 9. --->
<cfset objGirlB = StructNew() />
<cfset objGirlB.Name = "Sarah" />
<cfset objGirlB.Hotness = CreateObject( "component", "Girl" ).Init(
	hotness = 9
	) />

For Cut-and-Paste