| InvalidRemoteAddressException | Line # 5 | 1 | 1 | 100% |
1.0
|
| (3) | |||
| Result | |||
|
1.0
|
com.atlassian.security.auth.trustedapps.filter.TestTrustedAppAuthenticatorImpl.testBadRequestIp
com.atlassian.security.auth.trustedapps.filter.TestTrustedAppAuthenticatorImpl.testBadRequestIp
|
1 PASS | |
|
1.0
|
com.atlassian.security.auth.trustedapps.TestDefaultRequestMatcher.testBadIpAddress
com.atlassian.security.auth.trustedapps.TestDefaultRequestMatcher.testBadIpAddress
|
1 PASS | |
|
1.0
|
com.atlassian.security.auth.trustedapps.filter.TestTrustedApplicationsFilterAuthenticate.testBadRequestIp
com.atlassian.security.auth.trustedapps.filter.TestTrustedApplicationsFilterAuthenticate.testBadRequestIp
|
1 PASS | |
| 1 | package com.atlassian.security.auth.trustedapps; | |
| 2 | ||
| 3 | import com.atlassian.security.auth.trustedapps.TransportErrorMessage.Code; | |
| 4 | ||
| 5 | public class InvalidRemoteAddressException extends InvalidIPAddressException | |
| 6 | { | |
| 7 | 3 |
public InvalidRemoteAddressException(String ipAddress) |
| 8 | { | |
| 9 | 3 | super(Code.BAD_REMOTE_IP, ipAddress); |
| 10 | } | |
| 11 | } | |
|
||||||||||