Skip to content

Commit 12a6707

Browse files
author
Joerg Huber
committed
Changed to call new constructor.
1 parent 99641cb commit 12a6707

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

SIF3InfraREST/documentation/UseCases/RICOne/RICOneSecurityService.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919

2020
import java.util.Map;
2121

22-
import org.apache.log4j.Logger;
22+
import org.slf4j.Logger;
23+
import org.slf4j.LoggerFactory;
2324

2425
import au.com.systemic.framework.utils.AdvancedProperties;
2526
import riconeapi.common.Authenticator;
@@ -36,15 +37,15 @@
3637
*/
3738
public class RICOneSecurityService extends AbstractSecurityService
3839
{
39-
protected final Logger logger = Logger.getLogger(getClass());
40+
protected final Logger logger = LoggerFactory.getLogger(getClass());
4041

4142
private final static String AOUTH_URL_PROP_NAME = "ricOne.authUrl";
4243
/**
4344
* @param properties
4445
*/
4546
public RICOneSecurityService(AdvancedProperties properties, Map<String, String> securityServiceParameters)
4647
{
47-
super(properties);
48+
super(properties, securityServiceParameters);
4849
if (logger.isDebugEnabled())
4950
{
5051
logger.debug("RICOneSecurityService Constructor called with property: " + getServiceProperties());

0 commit comments

Comments
 (0)