Skip to contentPackage: RepositoryDelegate
RepositoryDelegate
Coverage
1: /*
2: * *********************************************************************************************************************
3: *
4: * blueMarine II: Semantic Media Centre
5: * http://tidalwave.it/projects/bluemarine2
6: *
7: * Copyright (C) 2015 - 2021 by Tidalwave s.a.s. (http://tidalwave.it)
8: *
9: * *********************************************************************************************************************
10: *
11: * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
12: * the License. You may obtain a copy of the License at
13: *
14: * http://www.apache.org/licenses/LICENSE-2.0
15: *
16: * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
17: * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
18: * specific language governing permissions and limitations under the License.
19: *
20: * *********************************************************************************************************************
21: *
22: * git clone https://bitbucket.org/tidalwave/bluemarine2-src
23: * git clone https://github.com/tidalwave-it/bluemarine2-src
24: *
25: * *********************************************************************************************************************
26: */
27: package it.tidalwave.bluemarine2.persistence.impl;
28:
29: import javax.inject.Inject;
30: import java.io.File;
31: import org.eclipse.rdf4j.model.ValueFactory;
32: import org.eclipse.rdf4j.repository.Repository;
33: import org.eclipse.rdf4j.repository.RepositoryConnection;
34: import org.eclipse.rdf4j.repository.RepositoryException;
35: import it.tidalwave.bluemarine2.persistence.Persistence;
36:
37: /***********************************************************************************************************************
38: *
39: * @author Fabrizio Giudici
40: *
41: **********************************************************************************************************************/
42: public class RepositoryDelegate implements Repository
43: {
44: @Inject
45: private Persistence persistence;
46:
47: @Override
48: public void setDataDir(File dataDir)
49: {
50: persistence.getRepository().setDataDir(dataDir);
51: }
52:
53: @Override
54: public File getDataDir()
55: {
56: return persistence.getRepository().getDataDir();
57: }
58:
59: @Override
60: public void initialize()
61: {
62: }
63:
64: @Override
65: public boolean isInitialized()
66: {
67: return persistence.getRepository().isInitialized();
68: }
69:
70: @Override
71: public void shutDown()
72: {
73: }
74:
75: @Override
76: public boolean isWritable()
77: throws RepositoryException
78: {
79: return persistence.getRepository().isWritable();
80: }
81:
82: @Override
83: public RepositoryConnection getConnection()
84: throws RepositoryException
85: {
86: return persistence.getRepository().getConnection();
87: }
88:
89: @Override
90: public ValueFactory getValueFactory()
91: {
92: return persistence.getRepository().getValueFactory();
93: }
94: }