This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cfcomponent output="false" > | |
| <cffunction name="init" access="public" returntype="any" > | |
| <!--- this just sets up the CFC with the elasticSearch URL and port ---> | |
| <cfargument name="searchEndPoint" type="string" required="true"/> | |
| <cfargument name="searchPort" type="string" required="true"/> | |
| <cfset variables.searchEndPoint = arguments.searchEndPoint /> | |
| <cfset variables.searchPort = arguments.searchPort /> | |
| <cfreturn this /> | |
| </cffunction> |