-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSelfCoreComponent.java
More file actions
99 lines (88 loc) · 2.92 KB
/
SelfCoreComponent.java
File metadata and controls
99 lines (88 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/**
* Copyright (c) 2020-2021, Self XDSD Contributors
* All rights reserved.
* <p>
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"),
* to read the Software only. Permission is hereby NOT GRANTED to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software.
* <p>
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
package com.selfxdsd.selfweb;
import com.selfxdsd.api.Contributors;
import com.selfxdsd.api.Login;
import com.selfxdsd.api.ProjectManagers;
import com.selfxdsd.api.Projects;
import com.selfxdsd.api.Self;
import com.selfxdsd.api.User;
import com.selfxdsd.core.SelfCore;
import com.selfxdsd.storage.Database;
import com.selfxdsd.storage.SelfJooq;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.web.context.annotation.SessionScope;
/**
* Self Core component.
* @author Mihai Andronache (amihaiemil@gmail.com)
* @version $Id$
* @since 0.0.1
*/
@Component
@SessionScope
public class SelfCoreComponent implements Self {
/**
* Self's core.
*/
private final Self core;
/**
* Default constructor for Spring.
* @param database Database connection.
*/
@Autowired
public SelfCoreComponent(final Database database) {
this.core = new SelfCore(new SelfJooq(database));
}
/**
* Constructor.
* @param core Encapsulated core.
*/
public SelfCoreComponent(final Self core) {
this.core = core;
}
@Override
public User login(final Login login) {
return this.core.login(login);
}
@Override
public User authenticate(final String token) {
return this.core.authenticate(token);
}
@Override
public ProjectManagers projectManagers() {
return this.core.projectManagers();
}
@Override
public Projects projects() {
return this.core.projects();
}
@Override
public Contributors contributors() {
return this.core.contributors();
}
@Override
public void close() throws Exception {
this.core.close();
}
}