[LIB-9] Implementation SPI for services, managers and adapters
[chesshog.git] / chesshog-db-etude / src / main / java / org / hedgecode / chess / service / jpa / JpaDomainService.java
1 /*
2  * Copyright (c) 2018. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.service.jpa;
18
19 import javax.persistence.EntityManager;
20
21 import org.hedgecode.chess.domain.DomainObject;
22 import org.hedgecode.chess.persistence.PersistenceManager;
23 import org.hedgecode.chess.service.DomainService;
24 import org.hedgecode.chess.service.ServiceRegistry;
25
26 /**
27  *
28  *
29  * @author Dmitry Samoshin aka gotty
30  */
31 public abstract class JpaDomainService<DomainType extends DomainObject> implements DomainService<DomainType> {
32
33     JpaDomainService() {
34     }
35
36     EntityManager getEntityManager() {
37         PersistenceManager persistenceManager = ServiceRegistry.singleProvider(
38                 PersistenceManager.class
39         );
40         return persistenceManager.getEntityManager();
41     }
42
43     @Override
44     public DomainType create(DomainType domainObject) {
45         getEntityManager().persist(
46                 domainObject
47         );
48         return domainObject;
49     }
50
51     @Override
52     public DomainType update(DomainType domainObject) {
53         getEntityManager().persist(
54                 domainObject
55         );
56         return domainObject;
57     }
58
59     @Override
60     public void remove(DomainType domainObject) {
61         getEntityManager().remove(
62                 domainObject
63         );
64     }
65
66 }