How Do I Call Methods On ColdFusion Components In Java

public java.lang.String GetFirstName(){
	 
	// Call this method on the ColdFusion component
	// object and return that value. This component is
	// currently stored as java.lang.Object (this.Handler).
	return(
		this.Handler.GetFirstName()
		);
 
}

For Cut-and-Paste