View Javadoc

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   * <p>
16   * Java class for DocumentConfig complex type.
17   * 
18   * <p>
19   * The following schema fragment specifies the expected content contained within this class.
20   * 
21   * <pre>
22   * &lt;complexType name="DocumentConfig">
23   *   &lt;complexContent>
24   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25   *       &lt;sequence>
26   *         &lt;element name="documentCategories" type="{}DocumentCategory" maxOccurs="unbounded" minOccurs="0"/>
27   *       &lt;/sequence>
28   *     &lt;/restriction>
29   *   &lt;/complexContent>
30   * &lt;/complexType>
31   * </pre>
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       * Gets the value of the documentCategories property.
47       * 
48       * <p>
49       * This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a <CODE>set</CODE> method for the documentCategories property.
50       * 
51       * <p>
52       * For example, to add a new item, do as follows:
53       * 
54       * <pre>
55       * getDocumentCategories().add(newItem);
56       * </pre>
57       * 
58       * 
59       * <p>
60       * Objects of the following type(s) are allowed in the list {@link DocumentCategory }
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  }