com.atlassian.crowd.authentication
Interface TrustedProxyManager

All Known Implementing Classes:
TrustedProxyManagerImpl

public interface TrustedProxyManager


Method Summary
 boolean add(java.lang.String remoteAddress)
          Adds a remote address to the list of those trusted to act as proxies.
 java.util.List<java.lang.String> getList()
          Returns a list of all trusted proxy servers, or an empty list if there are none.
 boolean isTrusted(java.lang.String remoteAddress)
          Returns true if the address represents a configured trusted proxy.
 void remove(java.lang.String remoteAddress)
          Removes an IP address from the list of those trusted.
 

Method Detail

isTrusted

boolean isTrusted(java.lang.String remoteAddress)
Returns true if the address represents a configured trusted proxy. False otherwise.

Parameters:
remoteAddress -
Returns:

getList

java.util.List<java.lang.String> getList()
Returns a list of all trusted proxy servers, or an empty list if there are none.

Returns:

add

boolean add(java.lang.String remoteAddress)
Adds a remote address to the list of those trusted to act as proxies.

Parameters:
remoteAddress -
Returns:

remove

void remove(java.lang.String remoteAddress)
Removes an IP address from the list of those trusted.

Parameters:
remoteAddress -


Copyright © 2009 Atlassian Pty Ltd. All Rights Reserved.