Searched refs:supportedFeatures (Results 1 - 25 of 53) sorted by relevance

123

/forgerock/opendj2/src/server/org/opends/server/api/
H A DBackend.java632 Set<String> supportedFeatures = getSupportedFeatures();
633 return supportedFeatures != null && supportedFeatures.contains(featureOID);
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DBackend.java632 Set<String> supportedFeatures = getSupportedFeatures();
633 return supportedFeatures != null && supportedFeatures.contains(featureOID);
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DBackend.java673 Set<String> supportedFeatures = getSupportedFeatures();
674 return ((supportedFeatures != null) &&
675 supportedFeatures.contains(featureOID));
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/
H A DNullBackend.java125 private HashSet<String> supportedFeatures; field in class:NullBackend
194 supportedFeatures = new HashSet<String>();
428 return supportedFeatures;
H A DMemoryBackend.java130 private HashSet<String> supportedFeatures; field in class:MemoryBackend
208 supportedFeatures = new HashSet<String>();
736 return supportedFeatures;
H A DBackupBackend.java94 private HashSet<String> supportedFeatures; field in class:BackupBackend
207 supportedFeatures = new HashSet<String>(0);
1034 return supportedFeatures;
H A DLDIFBackend.java120 private HashSet<String> supportedFeatures; field in class:LDIFBackend
1099 return supportedFeatures;
1479 supportedFeatures = new HashSet<String>(0);
H A DMonitorBackend.java98 private HashSet<String> supportedFeatures; field in class:MonitorBackend
251 supportedFeatures = new HashSet<String>(0);
525 return supportedFeatures;
H A DRootDSEBackend.java137 private HashSet<String> supportedFeatures; field in class:RootDSEBackend
304 supportedFeatures = new HashSet<String>(0);
1264 return supportedFeatures;
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DBackend.java673 Set<String> supportedFeatures = getSupportedFeatures();
674 return ((supportedFeatures != null) &&
675 supportedFeatures.contains(featureOID));
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/
H A DNullBackend.java125 private HashSet<String> supportedFeatures; field in class:NullBackend
194 supportedFeatures = new HashSet<String>();
428 return supportedFeatures;
H A DMemoryBackend.java130 private HashSet<String> supportedFeatures; field in class:MemoryBackend
208 supportedFeatures = new HashSet<String>();
736 return supportedFeatures;
H A DBackupBackend.java94 private HashSet<String> supportedFeatures; field in class:BackupBackend
207 supportedFeatures = new HashSet<String>(0);
1034 return supportedFeatures;
H A DLDIFBackend.java120 private HashSet<String> supportedFeatures; field in class:LDIFBackend
1099 return supportedFeatures;
1479 supportedFeatures = new HashSet<String>(0);
H A DMonitorBackend.java98 private HashSet<String> supportedFeatures; field in class:MonitorBackend
251 supportedFeatures = new HashSet<String>(0);
525 return supportedFeatures;
H A DRootDSEBackend.java137 private HashSet<String> supportedFeatures; field in class:RootDSEBackend
304 supportedFeatures = new HashSet<String>(0);
1264 return supportedFeatures;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DBackend.java673 Set<String> supportedFeatures = getSupportedFeatures();
674 return ((supportedFeatures != null) &&
675 supportedFeatures.contains(featureOID));
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/
H A DNullBackend.java125 private HashSet<String> supportedFeatures; field in class:NullBackend
194 supportedFeatures = new HashSet<String>();
428 return supportedFeatures;
H A DMemoryBackend.java130 private HashSet<String> supportedFeatures; field in class:MemoryBackend
208 supportedFeatures = new HashSet<String>();
736 return supportedFeatures;
H A DBackupBackend.java94 private HashSet<String> supportedFeatures; field in class:BackupBackend
207 supportedFeatures = new HashSet<String>(0);
1034 return supportedFeatures;
H A DLDIFBackend.java120 private HashSet<String> supportedFeatures; field in class:LDIFBackend
1099 return supportedFeatures;
1479 supportedFeatures = new HashSet<String>(0);
H A DMonitorBackend.java98 private HashSet<String> supportedFeatures; field in class:MonitorBackend
251 supportedFeatures = new HashSet<String>(0);
525 return supportedFeatures;
H A DRootDSEBackend.java137 private HashSet<String> supportedFeatures; field in class:RootDSEBackend
304 supportedFeatures = new HashSet<String>(0);
1264 return supportedFeatures;
/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DDirectoryServer.java670 private TreeSet<String> supportedFeatures; field in class:DirectoryServer
918 directoryServer.supportedFeatures = new TreeSet<String>();
2727 supportedFeatures.add(OID_ALL_OPERATIONAL_ATTRS_FEATURE);
2728 supportedFeatures.add(OID_MODIFY_INCREMENT_FEATURE);
2729 supportedFeatures.add(OID_TRUE_FALSE_FILTERS_FEATURE);
6804 return directoryServer.supportedFeatures;
6821 return directoryServer.supportedFeatures.contains(featureOID);
6836 synchronized (directoryServer.supportedFeatures)
6838 directoryServer.supportedFeatures.add(featureOID);
6854 synchronized (directoryServer.supportedFeatures)
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/core/
H A DDirectoryServer.java671 private TreeSet<String> supportedFeatures; field in class:DirectoryServer
919 directoryServer.supportedFeatures = new TreeSet<String>();
2728 supportedFeatures.add(OID_ALL_OPERATIONAL_ATTRS_FEATURE);
2729 supportedFeatures.add(OID_MODIFY_INCREMENT_FEATURE);
2730 supportedFeatures.add(OID_TRUE_FALSE_FILTERS_FEATURE);
6804 return directoryServer.supportedFeatures;
6821 return directoryServer.supportedFeatures.contains(featureOID);
6836 synchronized (directoryServer.supportedFeatures)
6838 directoryServer.supportedFeatures.add(featureOID);
6854 synchronized (directoryServer.supportedFeatures)
[all...]

Completed in 1447 milliseconds

123