Store the created class file in the following directory:
/etc/opt/FJSVcep/config/custom/engineName/classesStore the created jar file in the following directory:
/etc/opt/FJSVcep/config/custom/engineNameNote
Grant access permissions so that the engine execution user can read the created class file and jar file.
For storing a class file, create a directory corresponding to the class package name in the classes directory. Grant access permissions also for the created directory so that the engine execution user can read it.
The class file and the jar file stored during the CEP engine is running are not enabled until the CEP engine is restarted.
Example
Example of storing a class file
Create a directory named com/example as shown below for storing the com.example.Example class.
# cd /etc/opt/FJSVcep/config/custom/engineName/classes <ENTER>
# mkdir -p com/example <ENTER>
# chmod 555 com <ENTER>
# chmod 555 com/example <ENTER>
# cp pathOfClassFileToBeStored com/example/ <ENTER>
# chmod 444 com/example/classFileName <ENTER>