Attribute |
Details |
public static const String BEAN_NAME |
Initial: "MultipleImport"
|
public static const Format BIBTEX_FORMAT |
Initial: new Format("bibtex", "text/plain", "UTF-8")
|
private ContextVO context |
|
private int duplicateStrategy |
Initial: 3
|
public static const Format EDOC_FORMAT |
Initial: new Format("edoc", "application/xml", "UTF-8")
|
public static const Format ENDNOTE_FORMAT |
Initial: new Format("endnote", "text/plain", "UTF-8")
|
public static const Format ESCIDOC_FORMAT |
Initial: new Format("escidoc-publication-item", "application/xml", "UTF-8")
|
private Format format |
|
private Converter formatConverter |
Initial: new Converter()
{
public Object getAsObject(FacesContext arg0, javax.faces.component.UIComponent arg1, String value)
{
if (value != null && !"".equals(value))
{
String[] parts = value.split("[\\[\\,\\]]");
if (parts.length > 3)
{
return new Format(parts[1], parts[2], parts[3]);
}
else
{
return null;
}
}
else
{
return null;
}
}
public String getAsString(FacesContext arg0, UIComponent arg1, Object format)
{
if (format instanceof Format)
{
return ((Format) format).toString();
}
else
{
return null;
}
}
}
|
private TreeMap importFormats |
Initial: new TreeMap()
|
private ImportProcess importProcess |
Initial: null
|
public static const String LOAD_MULTIPLE_IMPORT |
Initial: "loadMultipleImport"
|
public static const String LOAD_MULTIPLE_IMPORT_FORM |
Initial: "loadMultipleImportForm"
|
private static const Logger logger |
Initial: Logger.getLogger(MultipleImport.class)
|
private String name |
|
public static const Format RIS_FORMAT |
Initial: new Format("ris", "text/plain", "UTF-8")
|
private boolean rollback |
Initial: true
|
private UploadedFile uploadedImportFile |
|
public static const Format WOS_FORMAT |
Initial: new Format("wos", "text/plain", "UTF-8")
|