All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.unboundid.ldap.sdk.unboundidds.monitors.ClientConnectionMonitorEntry Maven / Gradle / Ivy

/*
 * Copyright 2008-2017 UnboundID Corp.
 * All Rights Reserved.
 */
/*
 * Copyright (C) 2015-2017 UnboundID Corp.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License (GPLv2 only)
 * or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see .
 */
package com.unboundid.ldap.sdk.unboundidds.monitors;



import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

import com.unboundid.ldap.sdk.Entry;
import com.unboundid.util.NotMutable;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;

import static com.unboundid.ldap.sdk.unboundidds.monitors.MonitorMessages.*;



/**
 * This class defines a monitor entry that provides general information about
 * the client connections currently established.  Note that the information
 * available for each client connection may vary based on the type of connection
 * handler with which that connection is associated.
 * 
*
* NOTE: This class is part of the Commercial Edition of the UnboundID * LDAP SDK for Java. It is not available for use in applications that * include only the Standard Edition of the LDAP SDK, and is not supported for * use in conjunction with non-UnboundID products. *
*
* The server should present at most one client connection monitor entry. It * can be retrieved using the * {@link MonitorManager#getClientConnectionMonitorEntry} method. The * {@link ClientConnectionMonitorEntry#getConnections} method may be used to * retrieve information for each connection. Alternately, this information may * be accessed using the generic API. See the {@link MonitorManager} class * documentation for an example that demonstrates the use of the generic API for * accessing monitor data. */ @NotMutable() @ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE) public final class ClientConnectionMonitorEntry extends MonitorEntry { /** * The structural object class used in client connection monitor entries. */ static final String CLIENT_CONNECTION_MONITOR_OC = "ds-client-connection-monitor-entry"; /** * The name of the attribute that contains information about the established * connections. */ private static final String ATTR_CONNECTION = "connection"; /** * The serial version UID for this serializable class. */ private static final long serialVersionUID = -1705824766273147598L; // The list of connections currently established. private final List connections; /** * Creates a new client connection monitor entry from the provided entry. * * @param entry The entry to be parsed as a client connection monitor entry. * It must not be {@code null}. */ public ClientConnectionMonitorEntry(final Entry entry) { super(entry); connections = getStrings(ATTR_CONNECTION); } /** * Retrieves a list of the string representations of the connections * established to the Directory Server. Values should be space-delimited * name-value pairs with the values surrounded by quotation marks. * * @return A list of the string representations of the connections * established to the Directory Server, or an empty list if it was * not included in the monitor entry or there are no established * connections. */ public List getConnections() { return connections; } /** * {@inheritDoc} */ @Override() public String getMonitorDisplayName() { return INFO_CLIENT_CONNECTION_MONITOR_DISPNAME.get(); } /** * {@inheritDoc} */ @Override() public String getMonitorDescription() { return INFO_CLIENT_CONNECTION_MONITOR_DESC.get(); } /** * {@inheritDoc} */ @Override() public Map getMonitorAttributes() { final LinkedHashMap attrs = new LinkedHashMap(); if (! connections.isEmpty()) { addMonitorAttribute(attrs, ATTR_CONNECTION, INFO_CLIENT_CONNECTION_DISPNAME_CONNECTION.get(), INFO_CLIENT_CONNECTION_DESC_CONNECTION.get(), connections); } return Collections.unmodifiableMap(attrs); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy