| | |
| | | extends Backend |
| | | implements ConfigurableComponent |
| | | { |
| | | |
| | | |
| | | |
| | | // The DN of the configuration entry for this backend. |
| | | private DN configEntryDN; |
| | | |
| | |
| | | { |
| | | super(); |
| | | |
| | | |
| | | |
| | | // Perform all initialization in initializeBackend. |
| | | } |
| | | |
| | |
| | | // If the requested entry was the backend base entry, then retrieve it. |
| | | if (entryDN.equals(backupBaseDN)) |
| | | { |
| | | return backupBaseEntry; |
| | | return backupBaseEntry.duplicate(true); |
| | | } |
| | | |
| | | |
| | |
| | | userAttrs.put(t, attrList); |
| | | |
| | | |
| | | return new Entry(entryDN, ocMap, userAttrs, opAttrs); |
| | | Entry e = new Entry(entryDN, ocMap, userAttrs, opAttrs); |
| | | e.processVirtualAttributes(); |
| | | return e; |
| | | } |
| | | |
| | | |
| | |
| | | } |
| | | |
| | | |
| | | return new Entry(entryDN, ocMap, userAttrs, opAttrs); |
| | | Entry e = new Entry(entryDN, ocMap, userAttrs, opAttrs); |
| | | e.processVirtualAttributes(); |
| | | return e; |
| | | } |
| | | |
| | | |