| | |
| | | */ |
| | | public abstract class ClientConnection |
| | | { |
| | | |
| | | |
| | | |
| | | // The set of authentication information for this client connection. |
| | | private AuthenticationInfo authenticationInfo; |
| | | |
| | |
| | | * searches performed using this client |
| | | * connection. |
| | | */ |
| | | public final void setSizeLimit(int sizeLimit) |
| | | public void setSizeLimit(int sizeLimit) |
| | | { |
| | | this.sizeLimit = sizeLimit; |
| | | } |
| | |
| | | * entries that should be check for |
| | | * matches during a search. |
| | | */ |
| | | public final void setLookthroughLimit(int lookthroughLimit) |
| | | public void setLookthroughLimit(int lookthroughLimit) |
| | | { |
| | | this.lookthroughLimit = lookthroughLimit; |
| | | } |
| | |
| | | * searches performed using this client |
| | | * connection. |
| | | */ |
| | | public final void setTimeLimit(int timeLimit) |
| | | public void setTimeLimit(int timeLimit) |
| | | { |
| | | this.timeLimit = timeLimit; |
| | | } |