<cfcomponent>
	<cfparam name="instance" default="#structNew()#">
	<cfset instance.id = createUUID()>
	<!--- this function is designated as private! --->
	<cffunction name="getSecretStuff" access="private">
		<cfreturn "I am some secret stuff in a private method!">
	</cffunction>
</cfcomponent>