Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dad
archive-format-converter
Commits
3230637b
Commit
3230637b
authored
Nov 05, 2021
by
marceteau
Browse files
gestion des document vers ArchiveUnit (cas particulier) + keyword -> tag
parent
62b1ed59
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
src/main/java/fr/cines/pac/converter/ArchiveConverterMain.java
View file @
3230637b
...
...
@@ -336,7 +336,11 @@ public class ArchiveConverterMain {
archiveConverter
=
new
DCToSeda21TarMaker
(
this
.
agency
,
null
,
formalism
);
}
}
else
if
(
formalism
.
equals
(
"seda1"
))
{
archiveConverter
=
new
Seda1ToSeda21TarMaker
(
this
.
agency
,
this
.
planClassementFile
.
toString
());
if
(
this
.
planClassementFile
!=
null
)
{
archiveConverter
=
new
Seda1ToSeda21TarMaker
(
this
.
agency
,
this
.
planClassementFile
.
toString
());
}
else
{
archiveConverter
=
new
Seda1ToSeda21TarMaker
(
this
.
agency
,
null
);
}
}
else
{
System
.
err
.
println
(
"Ce formalisme n'est pas reconnu, veuillez choisir sip ou seda1"
);
throw
new
IllegalArgumentException
(
"Ce formalisme n'est pas reconnu, veuillez choisir sip ou seda1"
);
...
...
src/main/java/fr/cines/pac/converter/Seda1ToSeda21Converter.java
View file @
3230637b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment