1 package org.kuali.ole.docstore.model.xmlpojo.config;
2
3 import org.apache.commons.io.FileUtils;
4 import org.apache.commons.io.IOUtils;
5 import org.kuali.ole.docstore.model.jaxb.config.DocumentConfigConverter;
6 import org.slf4j.Logger;
7 import org.slf4j.LoggerFactory;
8
9 import javax.xml.bind.annotation.*;
10 import java.io.File;
11 import java.util.ArrayList;
12 import java.util.List;
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlRootElement(name = "documentConfig")
37 @XmlType(name = "DocumentConfig")
38 public class DocumentConfig {
39
40 public static Logger logger = LoggerFactory.getLogger(DocumentConfig.class);
41 public static DocumentConfig docStoreMetaData = null;
42 @XmlElement(name = "documentCategory")
43 protected List<DocumentCategory> documentCategories;
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64 public List<DocumentCategory> getDocumentCategories() {
65 if (documentCategories == null) {
66 documentCategories = new ArrayList<DocumentCategory>();
67 }
68 return this.documentCategories;
69 }
70
71 public static DocumentConfig getInstance() {
72 if (docStoreMetaData == null) {
73 try {
74 DocumentConfigConverter documentConverter = new DocumentConfigConverter();
75 String docConfigFilePath = System.getProperty("document.config.file");
76 if (docConfigFilePath != null) {
77 logger.info("docConfigFilePath-->" + docConfigFilePath);
78 File docConfigFile = new File(docConfigFilePath);
79 docStoreMetaData = documentConverter.unmarshal(FileUtils.readFileToString(docConfigFile));
80 } else {
81 docStoreMetaData = documentConverter.unmarshal(IOUtils.toString(DocumentConfig.class
82 .getResourceAsStream("/org/kuali/ole/docstore/DocumentConfig.xml")));
83 }
84 logger.info("docStoreMetaData-->" + docStoreMetaData);
85 logger.info("Loaded Doc Store Meta Data Successfully.");
86 } catch (Exception e) {
87 logger.error("Failed in Loading Doc Store Meta Data : Cause : " + e.getMessage(), e);
88 }
89 }
90 return docStoreMetaData;
91 }
92
93 }