* The actual service to create can be parameterized using a property, defined in the database.
*/
public class ProxyServletFactory extends ServletFactory {
private static String findServletClassName() {
Application app = Application.getRuntimeApplicationObject();
if(app!=null) {
String s = app.getProperty("sbt.servlet.services");
if(StringUtil.isNotEmpty(s)) {
return s;
}
}
return DominoServiceServlet.class.getName();