java/com.sap.sse.security.ui/src/main/java/com/sap/sse/security/ui/authentication/login/LoginHintContent.java
... ...
@@ -2,7 +2,6 @@ package com.sap.sse.security.ui.authentication.login;
2 2
3 3
import com.google.gwt.core.client.GWT;
4 4
import com.google.gwt.dom.client.Element;
5
-import com.google.gwt.dom.client.Style.Display;
6 5
import com.google.gwt.event.dom.client.ClickEvent;
7 6
import com.google.gwt.event.dom.client.ClickHandler;
8 7
import com.google.gwt.uibinder.client.UiBinder;
... ...
@@ -13,7 +12,6 @@ import com.google.gwt.user.client.EventListener;
13 12
import com.google.gwt.user.client.ui.Anchor;
14 13
import com.google.gwt.user.client.ui.Composite;
15 14
import com.google.gwt.user.client.ui.Widget;
16
-import com.sap.sse.gwt.shared.ClientConfiguration;
17 15
18 16
/**
19 17
* Widget that shows a message to inform the user that it has benefits to log in. There are two links the user can
java/com.sap.sse.security.ui/src/main/java/com/sap/sse/security/ui/server/UserManagementServiceImpl.java
... ...
@@ -28,7 +28,6 @@ import com.sap.sse.ServerInfo;
28 28
import com.sap.sse.branding.BrandingConfigurationService;
29 29
import com.sap.sse.branding.shared.BrandingConfiguration;
30 30
import com.sap.sse.common.TimedLock;
31
-import com.sap.sse.branding.shared.BrandingConfiguration;
32 31
import com.sap.sse.common.Util;
33 32
import com.sap.sse.common.Util.Pair;
34 33
import com.sap.sse.common.Util.Triple;
java/com.sap.sse.security/src/com/sap/sse/security/impl/SecurityServiceInitialLoadExtensionsDTO.java
... ...
@@ -36,12 +36,12 @@ public class SecurityServiceInitialLoadExtensionsDTO implements Serializable {
36 36
37 37
public SecurityServiceInitialLoadExtensionsDTO(
38 38
ConcurrentMap<String, Pair<Boolean, Set<String>>> corsFilterConfigurationsByReplicaSetName,
39
- ConcurrentMap<String, LockingAndBanning> clientIPBasedLockingAndBanningForBearerTokenAuthentication,
40
- ConcurrentMap<String, LockingAndBanning> clientIPBasedLockingAndBanningForUserCreation) {
39
+ ConcurrentMap<String, TimedLock> clientIPBasedTimedLockForBearerTokenAuthentication,
40
+ ConcurrentMap<String, TimedLock> clientIPBasedTimedLocksForUserCreation) {
41 41
super();
42 42
this.corsFilterConfigurationsByReplicaSetName = corsFilterConfigurationsByReplicaSetName;
43
- this.clientIPBasedLockingAndBanningForBearerTokenAuthentication = clientIPBasedLockingAndBanningForBearerTokenAuthentication;
44
- this.clientIPBasedLockingAndBanningForUserCreation = clientIPBasedLockingAndBanningForUserCreation;
43
+ this.clientIPBasedTimedLocksForBearerTokenAuthentication = clientIPBasedTimedLockForBearerTokenAuthentication;
44
+ this.clientIPBasedTimedLocksForUserCreation = clientIPBasedTimedLocksForUserCreation;
45 45
}
46 46
47 47