| | |
| | | extends Backend |
| | | implements ConfigurableComponent |
| | | { |
| | | |
| | | |
| | | |
| | | // The set of user-defined attributes that will be included in the base |
| | | // monitor entry. |
| | | private ArrayList<Attribute> userDefinedAttributes; |
| | |
| | | { |
| | | super(); |
| | | |
| | | |
| | | |
| | | // Perform all initialization in initializeBackend. |
| | | } |
| | | |
| | |
| | | |
| | | |
| | | // Construct and return the entry. |
| | | return new Entry(baseMonitorDN, monitorClasses, monitorUserAttrs, |
| | | monitorOperationalAttrs); |
| | | Entry e = new Entry(baseMonitorDN, monitorClasses, monitorUserAttrs, |
| | | monitorOperationalAttrs); |
| | | e.processVirtualAttributes(); |
| | | return e; |
| | | } |
| | | |
| | | |
| | |
| | | } |
| | | } |
| | | |
| | | return new Entry(entryDN, monitorClasses, attrMap, |
| | | new HashMap<AttributeType,List<Attribute>>(0)); |
| | | Entry e = new Entry(entryDN, monitorClasses, attrMap, |
| | | new HashMap<AttributeType,List<Attribute>>(0)); |
| | | e.processVirtualAttributes(); |
| | | return e; |
| | | } |
| | | |
| | | |