From e1ea3e0d8999105f144d2be98e0286928b8319ed Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Tue, 03 Apr 2007 18:52:11 +0000
Subject: [PATCH] Add initial support for a virtual attribute subsystem, and implement a few different kinds of virtual attributes. This commit addresses the following issues:
---
opends/src/server/org/opends/server/backends/SchemaBackend.java | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/backends/SchemaBackend.java b/opends/src/server/org/opends/server/backends/SchemaBackend.java
index 7a8034f..042bafe 100644
--- a/opends/src/server/org/opends/server/backends/SchemaBackend.java
+++ b/opends/src/server/org/opends/server/backends/SchemaBackend.java
@@ -952,7 +952,10 @@
// Construct and return the entry.
- return new Entry(entryDN, schemaObjectClasses, userAttrs, operationalAttrs);
+ Entry e = new Entry(entryDN, schemaObjectClasses, userAttrs,
+ operationalAttrs);
+ e.processVirtualAttributes();
+ return e;
}
--
Gitblit v1.10.0