blob: d26649526198b634e9eaa6abf4f10e2aaec799f6 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>CatalogServiceImpl xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../../../apidocs/org/apache/logging/log4j/catalog/jpa/service/CatalogServiceImpl.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="L1" href="#L1">1</a> <em class="jxr_comment">/*</em>
<a class="jxr_linenumber" name="L2" href="#L2">2</a> <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</em>
<a class="jxr_linenumber" name="L3" href="#L3">3</a> <em class="jxr_comment"> * contributor license agreements. See the NOTICE file distributed with</em>
<a class="jxr_linenumber" name="L4" href="#L4">4</a> <em class="jxr_comment"> * this work for additional information regarding copyright ownership.</em>
<a class="jxr_linenumber" name="L5" href="#L5">5</a> <em class="jxr_comment"> * The ASF licenses this file to You under the Apache license, Version 2.0</em>
<a class="jxr_linenumber" name="L6" href="#L6">6</a> <em class="jxr_comment"> * (the "License"); you may not use this file except in compliance with</em>
<a class="jxr_linenumber" name="L7" href="#L7">7</a> <em class="jxr_comment"> * the License. You may obtain a copy of the License at</em>
<a class="jxr_linenumber" name="L8" href="#L8">8</a> <em class="jxr_comment"> *</em>
<a class="jxr_linenumber" name="L9" href="#L9">9</a> <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em>
<a class="jxr_linenumber" name="L10" href="#L10">10</a> <em class="jxr_comment"> *</em>
<a class="jxr_linenumber" name="L11" href="#L11">11</a> <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing, software</em>
<a class="jxr_linenumber" name="L12" href="#L12">12</a> <em class="jxr_comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
<a class="jxr_linenumber" name="L13" href="#L13">13</a> <em class="jxr_comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
<a class="jxr_linenumber" name="L14" href="#L14">14</a> <em class="jxr_comment"> * See the license for the specific language governing permissions and</em>
<a class="jxr_linenumber" name="L15" href="#L15">15</a> <em class="jxr_comment"> * limitations under the license.</em>
<a class="jxr_linenumber" name="L16" href="#L16">16</a> <em class="jxr_comment"> */</em>
<a class="jxr_linenumber" name="L17" href="#L17">17</a> <strong class="jxr_keyword">package</strong> org.apache.logging.log4j.catalog.jpa.service;
<a class="jxr_linenumber" name="L18" href="#L18">18</a>
<a class="jxr_linenumber" name="L19" href="#L19">19</a> <strong class="jxr_keyword">import</strong> java.time.LocalDateTime;
<a class="jxr_linenumber" name="L20" href="#L20">20</a> <strong class="jxr_keyword">import</strong> java.util.ArrayList;
<a class="jxr_linenumber" name="L21" href="#L21">21</a> <strong class="jxr_keyword">import</strong> java.util.List;
<a class="jxr_linenumber" name="L22" href="#L22">22</a> <strong class="jxr_keyword">import</strong> java.util.Optional;
<a class="jxr_linenumber" name="L23" href="#L23">23</a>
<a class="jxr_linenumber" name="L24" href="#L24">24</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.api.Attribute;
<a class="jxr_linenumber" name="L25" href="#L25">25</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.api.CatalogData;
<a class="jxr_linenumber" name="L26" href="#L26">26</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.api.Category;
<a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.api.Event;
<a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.api.Product;
<a class="jxr_linenumber" name="L29" href="#L29">29</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.api.plugins.ConstraintPlugins;
<a class="jxr_linenumber" name="L30" href="#L30">30</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.converter.AttributeModelConverter;
<a class="jxr_linenumber" name="L31" href="#L31">31</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.converter.CategoryModelConverter;
<a class="jxr_linenumber" name="L32" href="#L32">32</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.converter.EventModelConverter;
<a class="jxr_linenumber" name="L33" href="#L33">33</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.converter.ProductModelConverter;
<a class="jxr_linenumber" name="L34" href="#L34">34</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.dao.AttributeRepository;
<a class="jxr_linenumber" name="L35" href="#L35">35</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.dao.CatalogRepository;
<a class="jxr_linenumber" name="L36" href="#L36">36</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.dao.CategoryRepository;
<a class="jxr_linenumber" name="L37" href="#L37">37</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.dao.EventRepository;
<a class="jxr_linenumber" name="L38" href="#L38">38</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.dao.ProductRepository;
<a class="jxr_linenumber" name="L39" href="#L39">39</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.model.AttributeModel;
<a class="jxr_linenumber" name="L40" href="#L40">40</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.model.CatalogModel;
<a class="jxr_linenumber" name="L41" href="#L41">41</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.model.CategoryModel;
<a class="jxr_linenumber" name="L42" href="#L42">42</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.model.EventModel;
<a class="jxr_linenumber" name="L43" href="#L43">43</a> <strong class="jxr_keyword">import</strong> org.apache.logging.log4j.catalog.jpa.model.ProductModel;
<a class="jxr_linenumber" name="L44" href="#L44">44</a> <strong class="jxr_keyword">import</strong> org.springframework.beans.factory.annotation.Autowired;
<a class="jxr_linenumber" name="L45" href="#L45">45</a> <strong class="jxr_keyword">import</strong> org.springframework.stereotype.Repository;
<a class="jxr_linenumber" name="L46" href="#L46">46</a> <strong class="jxr_keyword">import</strong> org.springframework.stereotype.Service;
<a class="jxr_linenumber" name="L47" href="#L47">47</a> <strong class="jxr_keyword">import</strong> org.springframework.transaction.annotation.Transactional;
<a class="jxr_linenumber" name="L48" href="#L48">48</a>
<a class="jxr_linenumber" name="L49" href="#L49">49</a> @Service
<a class="jxr_linenumber" name="L50" href="#L50">50</a> @Repository
<a class="jxr_linenumber" name="L51" href="#L51">51</a> @Transactional(readOnly = false)
<a class="jxr_linenumber" name="L52" href="#L52">52</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/service/CatalogServiceImpl.html">CatalogServiceImpl</a> <strong class="jxr_keyword">implements</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/service/CatalogService.html">CatalogService</a> {
<a class="jxr_linenumber" name="L53" href="#L53">53</a>
<a class="jxr_linenumber" name="L54" href="#L54">54</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/api/plugins/ConstraintPlugins.html">ConstraintPlugins</a> constraintPlugins = ConstraintPlugins.getInstance();
<a class="jxr_linenumber" name="L55" href="#L55">55</a>
<a class="jxr_linenumber" name="L56" href="#L56">56</a> @Autowired
<a class="jxr_linenumber" name="L57" href="#L57">57</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/dao/AttributeRepository.html">AttributeRepository</a> attributeRepository;
<a class="jxr_linenumber" name="L58" href="#L58">58</a> @Autowired
<a class="jxr_linenumber" name="L59" href="#L59">59</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/dao/EventRepository.html">EventRepository</a> eventRepository;
<a class="jxr_linenumber" name="L60" href="#L60">60</a> @Autowired
<a class="jxr_linenumber" name="L61" href="#L61">61</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/dao/CategoryRepository.html">CategoryRepository</a> categoryRepository;
<a class="jxr_linenumber" name="L62" href="#L62">62</a> @Autowired
<a class="jxr_linenumber" name="L63" href="#L63">63</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/dao/ProductRepository.html">ProductRepository</a> productRepository;
<a class="jxr_linenumber" name="L64" href="#L64">64</a> @Autowired
<a class="jxr_linenumber" name="L65" href="#L65">65</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/converter/AttributeModelConverter.html">AttributeModelConverter</a> attributeModelConverter;
<a class="jxr_linenumber" name="L66" href="#L66">66</a> @Autowired
<a class="jxr_linenumber" name="L67" href="#L67">67</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/converter/EventModelConverter.html">EventModelConverter</a> eventModelConverter;
<a class="jxr_linenumber" name="L68" href="#L68">68</a> @Autowired
<a class="jxr_linenumber" name="L69" href="#L69">69</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/converter/CategoryModelConverter.html">CategoryModelConverter</a> categoryModelConverter;
<a class="jxr_linenumber" name="L70" href="#L70">70</a> @Autowired
<a class="jxr_linenumber" name="L71" href="#L71">71</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/converter/ProductModelConverter.html">ProductModelConverter</a> productModelConverter;
<a class="jxr_linenumber" name="L72" href="#L72">72</a> @Autowired
<a class="jxr_linenumber" name="L73" href="#L73">73</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/dao/CatalogRepository.html">CatalogRepository</a> catalogRepository;
<a class="jxr_linenumber" name="L74" href="#L74">74</a>
<a class="jxr_linenumber" name="L75" href="#L75">75</a>
<a class="jxr_linenumber" name="L76" href="#L76">76</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/api/CatalogData.html">CatalogData</a> getCatalogData() {
<a class="jxr_linenumber" name="L77" href="#L77">77</a> <a href="../../../../../../../org/apache/logging/log4j/catalog/api/CatalogData.html">CatalogData</a> data = <strong class="jxr_keyword">new</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/api/CatalogData.html">CatalogData</a>();
<a class="jxr_linenumber" name="L78" href="#L78">78</a>
<a class="jxr_linenumber" name="L79" href="#L79">79</a> List&lt;AttributeModel&gt; modelAttributes = attributeRepository.findAll();
<a class="jxr_linenumber" name="L80" href="#L80">80</a> List&lt;org.apache.logging.log4j.catalog.api.Attribute&gt; attributes = <strong class="jxr_keyword">new</strong> ArrayList&lt;&gt;(modelAttributes.size());
<a class="jxr_linenumber" name="L81" href="#L81">81</a> <strong class="jxr_keyword">for</strong> (AttributeModel modelAttribute : modelAttributes) {
<a class="jxr_linenumber" name="L82" href="#L82">82</a> <a href="../../../../../../../org/apache/logging/log4j/catalog/api/Attribute.html">Attribute</a> attribute = attributeModelConverter.convert(modelAttribute);
<a class="jxr_linenumber" name="L83" href="#L83">83</a> attributes.add(attribute);
<a class="jxr_linenumber" name="L84" href="#L84">84</a> }
<a class="jxr_linenumber" name="L85" href="#L85">85</a> data.setAttributes(attributes);
<a class="jxr_linenumber" name="L86" href="#L86">86</a>
<a class="jxr_linenumber" name="L87" href="#L87">87</a> List&lt;EventModel&gt; modelEvents = eventRepository.findAll();
<a class="jxr_linenumber" name="L88" href="#L88">88</a> List&lt;org.apache.logging.log4j.catalog.api.Event&gt; events = <strong class="jxr_keyword">new</strong> ArrayList&lt;&gt;(modelEvents.size());
<a class="jxr_linenumber" name="L89" href="#L89">89</a> <strong class="jxr_keyword">for</strong> (EventModel modelEvent : modelEvents) {
<a class="jxr_linenumber" name="L90" href="#L90">90</a> <a href="../../../../../../../org/apache/logging/log4j/catalog/api/Event.html">Event</a> event = eventModelConverter.convert(modelEvent);
<a class="jxr_linenumber" name="L91" href="#L91">91</a> events.add(event);
<a class="jxr_linenumber" name="L92" href="#L92">92</a> }
<a class="jxr_linenumber" name="L93" href="#L93">93</a> data.setEvents(events);
<a class="jxr_linenumber" name="L94" href="#L94">94</a>
<a class="jxr_linenumber" name="L95" href="#L95">95</a> List&lt;CategoryModel&gt; modelCategories = categoryRepository.findAll();
<a class="jxr_linenumber" name="L96" href="#L96">96</a> List&lt;org.apache.logging.log4j.catalog.api.Category&gt; categories = <strong class="jxr_keyword">new</strong> ArrayList&lt;&gt;(modelCategories.size());
<a class="jxr_linenumber" name="L97" href="#L97">97</a> <strong class="jxr_keyword">for</strong> (CategoryModel modelCategory : modelCategories) {
<a class="jxr_linenumber" name="L98" href="#L98">98</a> <a href="../../../../../../../org/apache/logging/log4j/catalog/api/Category.html">Category</a> category = categoryModelConverter.convert(modelCategory);
<a class="jxr_linenumber" name="L99" href="#L99">99</a> categories.add(category);
<a class="jxr_linenumber" name="L100" href="#L100">100</a> }
<a class="jxr_linenumber" name="L101" href="#L101">101</a> data.setCategories(categories);
<a class="jxr_linenumber" name="L102" href="#L102">102</a>
<a class="jxr_linenumber" name="L103" href="#L103">103</a> List&lt;ProductModel&gt; modelProducts = productRepository.findAll();
<a class="jxr_linenumber" name="L104" href="#L104">104</a> List&lt;Product&gt; products = <strong class="jxr_keyword">new</strong> ArrayList&lt;&gt;(modelProducts.size());
<a class="jxr_linenumber" name="L105" href="#L105">105</a> <strong class="jxr_keyword">for</strong> (ProductModel modelProduct : modelProducts) {
<a class="jxr_linenumber" name="L106" href="#L106">106</a> <a href="../../../../../../../org/apache/logging/log4j/catalog/api/Product.html">Product</a> product = productModelConverter.convert(modelProduct);
<a class="jxr_linenumber" name="L107" href="#L107">107</a> products.add(product);
<a class="jxr_linenumber" name="L108" href="#L108">108</a> }
<a class="jxr_linenumber" name="L109" href="#L109">109</a> data.setProducts(products);
<a class="jxr_linenumber" name="L110" href="#L110">110</a>
<a class="jxr_linenumber" name="L111" href="#L111">111</a> <strong class="jxr_keyword">return</strong> data;
<a class="jxr_linenumber" name="L112" href="#L112">112</a> }
<a class="jxr_linenumber" name="L113" href="#L113">113</a>
<a class="jxr_linenumber" name="L114" href="#L114">114</a> <strong class="jxr_keyword">public</strong> List&lt;CategoryModel&gt; getCategories() {
<a class="jxr_linenumber" name="L115" href="#L115">115</a> <strong class="jxr_keyword">return</strong> categoryRepository.findAll();
<a class="jxr_linenumber" name="L116" href="#L116">116</a> }
<a class="jxr_linenumber" name="L117" href="#L117">117</a>
<a class="jxr_linenumber" name="L118" href="#L118">118</a> <strong class="jxr_keyword">public</strong> Optional&lt;CategoryModel&gt; getCategory(String name) {
<a class="jxr_linenumber" name="L119" href="#L119">119</a> <strong class="jxr_keyword">return</strong> categoryRepository.findByName(name);
<a class="jxr_linenumber" name="L120" href="#L120">120</a> }
<a class="jxr_linenumber" name="L121" href="#L121">121</a>
<a class="jxr_linenumber" name="L122" href="#L122">122</a> <strong class="jxr_keyword">public</strong> Optional&lt;CategoryModel&gt; getCategory(<strong class="jxr_keyword">long</strong> id) {
<a class="jxr_linenumber" name="L123" href="#L123">123</a> <strong class="jxr_keyword">return</strong> categoryRepository.findOne(id);
<a class="jxr_linenumber" name="L124" href="#L124">124</a> }
<a class="jxr_linenumber" name="L125" href="#L125">125</a>
<a class="jxr_linenumber" name="L126" href="#L126">126</a> @Override
<a class="jxr_linenumber" name="L127" href="#L127">127</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/model/CatalogModel.html">CatalogModel</a> getCatalogModel() {
<a class="jxr_linenumber" name="L128" href="#L128">128</a> List&lt;CatalogModel&gt; catalogModels = catalogRepository.findAll();
<a class="jxr_linenumber" name="L129" href="#L129">129</a> <strong class="jxr_keyword">if</strong> (catalogModels != <strong class="jxr_keyword">null</strong> &amp;&amp; catalogModels.size() &gt; 0) {
<a class="jxr_linenumber" name="L130" href="#L130">130</a> <strong class="jxr_keyword">return</strong> catalogModels.get(0);
<a class="jxr_linenumber" name="L131" href="#L131">131</a> }
<a class="jxr_linenumber" name="L132" href="#L132">132</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
<a class="jxr_linenumber" name="L133" href="#L133">133</a> }
<a class="jxr_linenumber" name="L134" href="#L134">134</a>
<a class="jxr_linenumber" name="L135" href="#L135">135</a> @Override
<a class="jxr_linenumber" name="L136" href="#L136">136</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> saveCatalog(<a href="../../../../../../../org/apache/logging/log4j/catalog/jpa/model/CatalogModel.html">CatalogModel</a> catalogModel) {
<a class="jxr_linenumber" name="L137" href="#L137">137</a> catalogRepository.save(catalogModel);
<a class="jxr_linenumber" name="L138" href="#L138">138</a> }
<a class="jxr_linenumber" name="L139" href="#L139">139</a> }
</pre>
<hr/>
<div id="footer">Copyright &#169; 2016&#x2013;2018 <a href="http://www.apache.org">Apache Software Foundation</a>. All rights reserved.</div>
</body>
</html>