| | |
| | | */ |
| | | public Set<DN> getAdministrativeUsers() |
| | | { |
| | | return Collections.unmodifiableSet(administrativeUsers); |
| | | return administrativeUsers; |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public void setAdministrativeUsers(Set<DN> administrativeUsers) |
| | | { |
| | | this.administrativeUsers.clear(); |
| | | this.administrativeUsers.addAll(administrativeUsers); |
| | | this.administrativeUsers = Collections.unmodifiableSet(administrativeUsers); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public Set<BackendDescriptor> getBackends() |
| | | { |
| | | return Collections.unmodifiableSet(backends); |
| | | return backends; |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public void setBackends(Set<BackendDescriptor> backends) |
| | | { |
| | | this.backends.clear(); |
| | | this.backends.addAll(backends); |
| | | this.backends = Collections.unmodifiableSet(backends); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public Set<ConnectionHandlerDescriptor> getConnectionHandlers() |
| | | { |
| | | return Collections.unmodifiableSet(listeners); |
| | | return listeners; |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public void setConnectionHandlers(Set<ConnectionHandlerDescriptor> listeners) |
| | | { |
| | | this.listeners.clear(); |
| | | this.listeners.addAll(listeners); |
| | | this.listeners = Collections.unmodifiableSet(listeners); |
| | | } |
| | | |
| | | /** |