235236237238239240241242243244245
boolean matched = false; //authentication based on login-config only for M1. if (sipApplicationModel != null) { if (authModule == null) { authModule = new AuthModule(sipApplicationModel, this.appName, contextId); } }
554555556557558559560561562563
} public AuthModule getAuthModule() { if (sipApplicationModel != null) { if (authModule == null) { authModule = new AuthModule(sipApplicationModel, appName, contextId); } } return authModule; }