From b4f8838b15342670c31753a484abf0129e3c9653 Mon Sep 17 00:00:00 2001
From: jcduff <jcduff@localhost>
Date: Thu, 23 Oct 2008 14:04:24 +0000
Subject: [PATCH] The commit will bring the following features : - An updated version of the underlying database. BDB JE 3.3 is now used. - Attribute API refactoring providing a better abstraction and offering improved performances. - A new GUI called the Control-Panel to replace the Status-Panel: the specifications for this GUI are available on OpenDS Wiki and contains a link to a mockup. See <https://www.opends.org/wiki/page/ControlPanelUISpecification>. - Some changes in the replication protocol to implement "Assured Replication Mode". The specifications are on OpenDS Wiki at <https://www.opends.org/wiki/page/AssuredMode> and section 7 described some of the replication changes required to support this. Assured Replication is not finished, but the main replication protocol changes to support it are done. As explained by Gilles on an email on the Dev mailing list (http://markmail.org/message/46rgo3meq3vriy4a), with these changes the newer versions of OpenDS may not be able to replicate with OpenDS 1.0 instances. - Support for Service Tags on the platforms where the functionality is available and enabled. Specifications are published at <https://www.opends.org/wiki/page/OpenDSServiceTagEnabled>. For more information on Service Tags see <http://wikis.sun.com/display/ServiceTag/Sun+Service+Tag+FAQ>. - The Admin Connector service. In order to provide agentry of the OpenDS server at any time, a new service has been added, dedicated to the administration, configuration and monitoring of the server. An overview of the Admin Connector service and it's use is available on the OpenDS wiki <https://www.opends.org/wiki/page/ManagingAdministrationTrafficToTheServer> - Updates to the various command line tools to support the Admin Connector service. - Some internal re-architecting of the server to put the foundation of future developments such as virtual directory services. The new NetworkGroups and WorkFlow internal services which have been specified in <https://www.opends.org/wiki/page/BasicOperationRoutingThroughNetworkGroup> are now implemented. - Many bug fixes...
---
opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplicationMonitor.java | 35 ++++++++++++++++-------------------
1 files changed, 16 insertions(+), 19 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplicationMonitor.java b/opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplicationMonitor.java
index d26e63f..005747e 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplicationMonitor.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/replication/plugin/ReplicationMonitor.java
@@ -27,14 +27,15 @@
package org.opends.server.replication.plugin;
import java.util.ArrayList;
-import java.util.LinkedHashSet;
import org.opends.server.admin.std.server.MonitorProviderCfg;
import org.opends.server.api.MonitorProvider;
import org.opends.server.core.DirectoryServer;
import org.opends.server.types.Attribute;
+import org.opends.server.types.AttributeBuilder;
import org.opends.server.types.AttributeType;
import org.opends.server.types.AttributeValue;
+import org.opends.server.types.Attributes;
/**
* Class used to generate monitoring information for the replication.
@@ -88,11 +89,13 @@
ArrayList<Attribute> attributes = new ArrayList<Attribute>();
/* get the base dn */
- Attribute attr = new Attribute("base-dn", domain.getBaseDN().toString());
+ Attribute attr = Attributes.create("base-dn", domain.getBaseDN()
+ .toString());
attributes.add(attr);
/* get the base dn */
- attr = new Attribute("connected-to", domain.getReplicationServer());
+ attr = Attributes.create("connected-to", domain
+ .getReplicationServer());
attributes.add(attr);
/* get number of lost connections */
@@ -146,18 +149,17 @@
final String ATTR_SERVER_STATE = "server-state";
AttributeType type =
DirectoryServer.getDefaultAttributeType(ATTR_SERVER_STATE);
- LinkedHashSet<AttributeValue> values = new LinkedHashSet<AttributeValue>();
+ AttributeBuilder builder = new AttributeBuilder(type, ATTR_SERVER_STATE);
for (String str : domain.getServerState().toStringSet())
{
- values.add(new AttributeValue(type,str));
+ builder.add(new AttributeValue(type,str));
}
- attr = new Attribute(type, ATTR_SERVER_STATE, values);
- attributes.add(attr);
+ attributes.add(builder.toAttribute());
- attributes.add(new Attribute("ssl-encryption",
+ attributes.add(Attributes.create("ssl-encryption",
String.valueOf(domain.isSessionEncrypted())));
- attributes.add(new Attribute("generation-id",
+ attributes.add(Attributes.create("generation-id",
String.valueOf(domain.getGenerationId())));
return attributes;
@@ -172,17 +174,12 @@
* @param name the name of the attribute to add.
* @param value The integer value of he attribute to add.
*/
- private void addMonitorData(ArrayList<Attribute> attributes,
- String name, int value)
+ private void addMonitorData(ArrayList<Attribute> attributes, String name,
+ int value)
{
- Attribute attr;
- AttributeType type;
- LinkedHashSet<AttributeValue> values;
- type = DirectoryServer.getDefaultAttributeType(name);
- values = new LinkedHashSet<AttributeValue>();
- values.add(new AttributeValue(type, String.valueOf(value)));
- attr = new Attribute(type, name, values);
- attributes.add(attr);
+ AttributeType type = DirectoryServer.getDefaultAttributeType(name);
+ attributes.add(Attributes.create(type, new AttributeValue(type,
+ String.valueOf(value))));
}
/**
--
Gitblit v1.10.0