You are instantiating the class correctly. It is a problem
with access modifiers. I do not know if you are familiar with java
modifiers, but cffunction has similar a concept
http://livedocs.adobe.com/coldfusion/7/htmldocs/00001063.htm
Though the class itself is declared as "public"
public class StringEncryptWrapper {
...
}
Your constructor is not.
StringEncryptWrapper() {
...
}
I _think_ it is being assigned a default level of "package".
Meaning you cannot instantiate it from outside the package:
com.adeptengr.EncryptDecrypt. That is why you are receiving the
"Unable to find constructor.." exeception. It is not that CF cannot
find the constructor, it just is not allowed to access it.
The solution is to explicitly declare the constructor
_public_
public StringEncryptWrapper() {
...
}