Searched defs:templateFile (Results 151 - 162 of 162) sorted by relevance

1234567

/forgerock/opendj2-hg/src/server/org/opends/server/tools/makeldif/
H A DRandomTag.java247 * @param templateFile The template file in which this tag is used.
258 public void initializeForBranch(TemplateFile templateFile, Branch branch, argument
263 initializeInternal(templateFile, arguments, lineNumber, warnings);
272 * @param templateFile The template file in which this tag is used.
283 public void initializeForTemplate(TemplateFile templateFile, argument
288 initializeInternal(templateFile, arguments, lineNumber, warnings);
297 * @param templateFile The template file in which this tag is used.
307 private void initializeInternal(TemplateFile templateFile, String[] arguments, argument
311 random = templateFile.getRandom();
/forgerock/opendj2-hg/src/server/org/opends/server/tools/upgrade/
H A DUpgradeUtils.java571 * @param templateFile
590 static int updateSchemaFile(final File templateFile, final File destination, argument
601 templateReader = new LDIFEntryReader(new FileInputStream(templateFile));
606 templateFile.getPath()).toString());
655 writeFileHeaderComments(templateFile, destinationWriter);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tasks/
H A DImportTask.java118 private String templateFile; field in class:ImportTask
195 templateFile = asString(taskEntry, typeTemplateFile);
196 if (templateFile != null)
198 File f = new File(templateFile);
201 templateFile = new File(DirectoryServer.getInstanceRoot(), templateFile).getAbsolutePath();
574 if (templateFile != null)
593 tf.parse(templateFile, warnings);
597 logger.error(ERR_LDIFIMPORT_CANNOT_PARSE_TEMPLATE_FILE, templateFile, e.getMessage());
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/
H A DImportLDIF.java172 private StringArgument templateFile; field in class:ImportLDIF
239 // Make sure that either the "ldifFile" argument or the "templateFile"
243 if (templateFile.isPresent())
246 ERR_LDIFIMPORT_CONFLICTING_OPTIONS.get(ldifFiles.getLongIdentifier(), templateFile.getLongIdentifier()));
250 else if (! templateFile.isPresent())
253 ldifFiles.getLongIdentifier(), templateFile.getLongIdentifier()));
324 templateFile =
325 new StringArgument("templatefile", 'A', "templateFile", false, false,
329 argParser.addArgument(templateFile);
487 addAttribute(attributes, ATTR_IMPORT_TEMPLATE_FILE, templateFile
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/makeldif/
H A DRandomTag.java250 * @param templateFile The template file in which this tag is used.
261 public void initializeForBranch(TemplateFile templateFile, Branch branch, argument
266 initializeInternal(templateFile, arguments, lineNumber, warnings);
275 * @param templateFile The template file in which this tag is used.
286 public void initializeForTemplate(TemplateFile templateFile, argument
291 initializeInternal(templateFile, arguments, lineNumber, warnings);
300 * @param templateFile The template file in which this tag is used.
310 private void initializeInternal(TemplateFile templateFile, String[] arguments, argument
314 random = templateFile.getRandom();
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/upgrade/
H A DUpgradeUtils.java546 * @param templateFile
565 static int updateSchemaFile(final File templateFile, final File destination, argument
576 templateReader = new LDIFEntryReader(new FileInputStream(templateFile));
581 templateFile.getPath()).toString());
628 writeFileHeaderComments(templateFile, destinationWriter);
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DLDIFImportConfig.java338 * @param templateFile The template file to use to generate the
341 public LDIFImportConfig(TemplateFile templateFile) argument
343 this(new MakeLDIFInputStream(templateFile));
/forgerock/opendj2/src/server/org/opends/server/types/
H A DLDIFImportConfig.java337 * @param templateFile The template file to use to generate the
340 public LDIFImportConfig(TemplateFile templateFile) argument
342 this(new MakeLDIFInputStream(templateFile));
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DLDIFImportConfig.java338 * @param templateFile The template file to use to generate the
341 public LDIFImportConfig(TemplateFile templateFile) argument
343 this(new MakeLDIFInputStream(templateFile));
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DLDIFImportConfig.java338 * @param templateFile The template file to use to generate the
341 public LDIFImportConfig(TemplateFile templateFile) argument
343 this(new MakeLDIFInputStream(templateFile));
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DLDIFImportConfig.java337 * @param templateFile The template file to use to generate the
340 public LDIFImportConfig(TemplateFile templateFile) argument
342 this(new MakeLDIFInputStream(templateFile));
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DLDIFImportConfig.java199 * @param templateFile The template file to use to generate the
202 public LDIFImportConfig(TemplateFile templateFile) argument
204 this(new MakeLDIFInputStream(templateFile));

Completed in 44 milliseconds

1234567