2 * ============LICENSE_START=======================================================
3 * PNF-REGISTRATION-HANDLER
4 * ================================================================================
5 * Copyright (C) 2018 Nokia. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.onap.pnfsimulator.event;
23 import com.google.gson.JsonObject;
24 import java.util.List;
25 import java.util.Optional;
26 import org.springframework.beans.factory.annotation.Autowired;
27 import org.springframework.stereotype.Service;
30 public class EventDataService {
31 private final EventDataRepository repository;
34 public EventDataService(EventDataRepository repository) {
35 this.repository = repository;
38 private EventData persistEventData(String templateString, String patchedString, String inputString, String keywordsString) {
39 EventData eventData = EventData.builder()
40 .template(templateString)
41 .patched(patchedString)
43 .keywords(keywordsString)
45 return repository.save(eventData);
48 public EventData persistEventData(JsonObject templateJson, JsonObject patchedJson, JsonObject inputJson,
49 JsonObject keywordsJson) {
50 return persistEventData(templateJson.toString(),
51 patchedJson.toString(),
53 keywordsJson.toString());
56 public List<EventData> getAllEvents() {
57 return repository.findAll();
60 public Optional<EventData> getById(String id) {
61 return repository.findById(id);