| | |
| | | import org.opends.server.api.ClientConnection; |
| | | import org.opends.server.api.ConnectionHandler; |
| | | import org.opends.server.core.*; |
| | | import org.opends.server.core.networkgroups.NetworkGroup; |
| | | import org.opends.server.extensions.ConnectionSecurityProvider; |
| | | import org.opends.server.extensions.RedirectingByteChannel; |
| | | import org.opends.server.extensions.TLSByteChannel; |
| | |
| | | connectionID = DirectoryServer.newConnectionAccepted(this); |
| | | } |
| | | |
| | | /** {@inheritDoc} */ |
| | | @Override |
| | | public NetworkGroup getNetworkGroup() |
| | | { |
| | | if (connectionHandler.isAdminConnectionHandler()) |
| | | { |
| | | return NetworkGroup.getAdminNetworkGroup(); |
| | | } |
| | | return NetworkGroup.getDefaultNetworkGroup(); |
| | | } |
| | | |
| | | /** |
| | | * Retrieves the connection ID assigned to this connection. |
| | | * |