Searched refs:checkSchema (Results 1 - 25 of 101) sorted by relevance

12345

/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DConfigHandler.java59 * @param checkSchema Indicates whether to perform schema checking
67 boolean checkSchema)
66 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DImportLDIFReader.java125 final boolean checkSchema = importConfig.validateSchema();
191 final Entry entry = createEntry(lines, entryDN, checkSchema);
195 || (checkSchema && !isValidAgainstSchema(entry, lines)))
204 private Entry createEntry(List<StringBuilder> lines, DN entryDN, boolean checkSchema) argument
214 readAttribute(lines, line, entryDN, objectClasses, userAttrBuilders, operationalAttrBuilders, checkSchema);
/forgerock/opendj2/src/server/org/opends/server/api/
H A DConfigHandler.java58 * @param checkSchema Indicates whether to perform schema checking
66 boolean checkSchema)
65 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DConfigHandler.java59 * @param checkSchema Indicates whether to perform schema checking
67 boolean checkSchema)
66 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DConfigHandler.java59 * @param checkSchema Indicates whether to perform schema checking
67 boolean checkSchema)
66 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DConfigHandler.java58 * @param checkSchema Indicates whether to perform schema checking
66 boolean checkSchema)
65 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DConfigHandler.java58 * @param checkSchema Indicates whether to perform schema checking
66 boolean checkSchema)
65 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractNewEntryPanel.java263 entry = reader.readEntry(checkSchema());
292 protected boolean checkSchema() method in class:AbstractNewEntryPanel
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractNewEntryPanel.java262 entry = reader.readEntry(checkSchema());
291 protected boolean checkSchema() method in class:AbstractNewEntryPanel
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractNewEntryPanel.java263 entry = reader.readEntry(checkSchema());
292 protected boolean checkSchema() method in class:AbstractNewEntryPanel
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractNewEntryPanel.java262 entry = reader.readEntry(checkSchema());
291 protected boolean checkSchema() method in class:AbstractNewEntryPanel
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DAbstractNewEntryPanel.java263 entry = reader.readEntry(checkSchema());
292 protected boolean checkSchema() method in class:AbstractNewEntryPanel
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DAbstractNewEntryPanel.java249 Entry entry = reader.readEntry(checkSchema());
275 protected boolean checkSchema() method in class:AbstractNewEntryPanel
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java134 boolean checkSchema)
170 entry = reader.readEntry(checkSchema);
186 entry = reader.readEntry(checkSchema);
133 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java127 boolean checkSchema)
163 entry = reader.readEntry(checkSchema);
179 entry = reader.readEntry(checkSchema);
126 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java134 boolean checkSchema)
170 entry = reader.readEntry(checkSchema);
186 entry = reader.readEntry(checkSchema);
133 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java127 boolean checkSchema)
163 entry = reader.readEntry(checkSchema);
179 entry = reader.readEntry(checkSchema);
126 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java116 boolean checkSchema)
152 entry = reader.readEntry(checkSchema);
168 entry = reader.readEntry(checkSchema);
115 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/util/
H A DReadOnlyConfigFileHandler.java129 boolean checkSchema)
164 entry = reader.readEntry(checkSchema);
180 entry = reader.readEntry(checkSchema);
128 initializeConfigHandler(String configFile, boolean checkSchema) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DLDIFReader.java182 * @param checkSchema Indicates whether this reader should perform schema
197 public Entry readEntry(boolean checkSchema) argument
236 final Entry entry = createEntry(entryDN, lines, checkSchema);
242 validateAgainstSchemaIfNeeded(checkSchema, entry, lines);
249 private Entry createEntry(DN entryDN, List<StringBuilder> lines, boolean checkSchema) throws LDIFException argument
256 readAttribute(lines, line, entryDN, objectClasses, userAttrBuilders, operationalAttrBuilders, checkSchema);
316 private void validateAgainstSchemaIfNeeded(boolean checkSchema, final Entry entry, LinkedList<StringBuilder> lines) argument
319 if (checkSchema)
784 * @param checkSchema Indicates whether to perform schema
795 boolean checkSchema)
790 readAttribute(List<StringBuilder> lines, StringBuilder line, DN entryDN, Map<ObjectClass,String> objectClasses, Map<AttributeType,List<AttributeBuilder>> userAttrBuilders, Map<AttributeType,List<AttributeBuilder>> operationalAttrBuilders, boolean checkSchema) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/util/
H A DLDIFReader.java232 private Entry readEntry(boolean checkSchema, Map<DN, Suffix> map, argument
313 operationalAttrBuilders, checkSchema);
401 if (checkSchema)
458 * @param checkSchema Indicates whether this reader should perform schema
473 public Entry readEntry(boolean checkSchema) argument
526 operationalAttrBuilders, checkSchema);
596 if (checkSchema)
1037 * @param checkSchema Indicates whether to perform schema
1048 boolean checkSchema)
1115 if(checkSchema
1043 readAttribute(List<StringBuilder> lines, StringBuilder line, DN entryDN, Map<ObjectClass,String> objectClasses, Map<AttributeType,List<AttributeBuilder>> userAttrBuilders, Map<AttributeType,List<AttributeBuilder>> operationalAttrBuilders, boolean checkSchema) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/util/
H A DLDIFReader.java232 private Entry readEntry(boolean checkSchema, Map<DN, Suffix> map, argument
313 operationalAttrBuilders, checkSchema);
401 if (checkSchema)
458 * @param checkSchema Indicates whether this reader should perform schema
473 public Entry readEntry(boolean checkSchema) argument
526 operationalAttrBuilders, checkSchema);
596 if (checkSchema)
1037 * @param checkSchema Indicates whether to perform schema
1048 boolean checkSchema)
1115 if(checkSchema
1043 readAttribute(List<StringBuilder> lines, StringBuilder line, DN entryDN, Map<ObjectClass,String> objectClasses, Map<AttributeType,List<AttributeBuilder>> userAttrBuilders, Map<AttributeType,List<AttributeBuilder>> operationalAttrBuilders, boolean checkSchema) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/workflowelement/localbackend/
H A DLocalBackendModifyDNOperation.java942 if ((DirectoryServer.checkSchema()) && (! isSynchronizationOperation()))
978 * @param checkSchema A boolean allowing to control if schema must be
985 int startPos, boolean checkSchema)
1020 if (DirectoryServer.checkSchema() && checkSchema)
984 applyPreOpModifications(List<Modification> modifications, int startPos, boolean checkSchema) argument
/forgerock/opendj2/src/server/org/opends/server/workflowelement/localbackend/
H A DLocalBackendModifyDNOperation.java772 if (DirectoryServer.checkSchema() && !isSynchronizationOperation())
808 * @param checkSchema A boolean allowing to control if schema must be
815 int startPos, boolean checkSchema)
849 if (DirectoryServer.checkSchema() && checkSchema)
814 applyPreOpModifications(List<Modification> modifications, int startPos, boolean checkSchema) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/workflowelement/localbackend/
H A DLocalBackendModifyDNOperation.java899 if ((DirectoryServer.checkSchema()) && (! isSynchronizationOperation()))
935 * @param checkSchema A boolean allowing to control if schema must be
942 int startPos, boolean checkSchema)
977 if (DirectoryServer.checkSchema() && checkSchema)
941 applyPreOpModifications(List<Modification> modifications, int startPos, boolean checkSchema) argument

Completed in 192 milliseconds

12345