Skip to content

Package: EventStoreFactoryImpl

EventStoreFactoryImpl

nameinstructionbranchcomplexitylinemethod
EventStoreFactoryImpl()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
clone(EventStoreRecord)
M: 13 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 3 C: 0
0%
M: 1 C: 0
0%
newCreator(KapuaId)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
newEntity(KapuaId)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
newListResult()
M: 4 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
newQuery(KapuaId)
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2017, 2022 Eurotech and/or its affiliates and others
3: *
4: * This program and the accompanying materials are made
5: * available under the terms of the Eclipse Public License 2.0
6: * which is available at https://www.eclipse.org/legal/epl-2.0/
7: *
8: * SPDX-License-Identifier: EPL-2.0
9: *
10: * Contributors:
11: * Eurotech - initial API and implementation
12: *******************************************************************************/
13: package org.eclipse.kapua.commons.service.event.store.internal;
14:
15: import org.eclipse.kapua.KapuaEntityCloneException;
16: import org.eclipse.kapua.commons.service.event.store.api.EventStoreFactory;
17: import org.eclipse.kapua.commons.service.event.store.api.EventStoreRecord;
18: import org.eclipse.kapua.commons.service.event.store.api.EventStoreRecordCreator;
19: import org.eclipse.kapua.commons.service.event.store.api.EventStoreRecordListResult;
20: import org.eclipse.kapua.commons.service.event.store.api.EventStoreRecordQuery;
21: import org.eclipse.kapua.locator.KapuaProvider;
22: import org.eclipse.kapua.model.id.KapuaId;
23:
24: /**
25: * {@link EventStoreFactory} implementation
26: *
27: * @since 1.0.0
28: */
29: @KapuaProvider
30: public class EventStoreFactoryImpl implements EventStoreFactory {
31:
32: @Override
33: public EventStoreRecord newEntity(KapuaId scopeId) {
34: return new EventStoreRecordImpl(scopeId);
35: }
36:
37: @Override
38: public EventStoreRecordCreator newCreator(KapuaId scopeId) {
39: return new EventStoreRecordCreatorImpl(scopeId);
40: }
41:
42: @Override
43: public EventStoreRecordQuery newQuery(KapuaId scopeId) {
44: return new EventStoreQueryImpl(scopeId);
45: }
46:
47: @Override
48: public EventStoreRecordListResult newListResult() {
49: return new EventStoreRecordListResultImpl();
50: }
51:
52: @Override
53: public EventStoreRecord clone(EventStoreRecord eventStoreRecord) {
54: try {
55: return new EventStoreRecordImpl(eventStoreRecord);
56: } catch (Exception e) {
57: throw new KapuaEntityCloneException(e, EventStoreRecord.TYPE, eventStoreRecord);
58: }
59: }
60: }