Completed Architectural Setup
This commit is contained in:
+1
-1
@@ -6,6 +6,6 @@ import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
@AllArgsConstructor
|
||||
class DefinitionManager {
|
||||
public class DefinitionManager {
|
||||
final private DefinitionDao definitionDao;
|
||||
}
|
||||
|
||||
-1
@@ -5,7 +5,6 @@ import org.springframework.context.annotation.Configuration;
|
||||
|
||||
@Configuration
|
||||
@ComponentScan
|
||||
//@PropertySource("classpath:development.properties")
|
||||
public class ManagerConfig {
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,6 +6,6 @@ import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
@AllArgsConstructor
|
||||
class NotationManager {
|
||||
public class NotationManager {
|
||||
final private NotationDao notationDao;
|
||||
}
|
||||
|
||||
+3
-5
@@ -1,13 +1,11 @@
|
||||
package edu.msudenver.tsp.persistence.manager;
|
||||
|
||||
import edu.msudenver.tsp.persistence.dao.ProofDao;
|
||||
import lombok.AllArgsConstructor;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
class ProofManager {
|
||||
@AllArgsConstructor
|
||||
public class ProofManager {
|
||||
final private ProofDao proofDao;
|
||||
|
||||
ProofManager(final ProofDao proofDao) {
|
||||
this.proofDao = proofDao;
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,6 +6,6 @@ import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
@AllArgsConstructor
|
||||
class TheoremManager {
|
||||
public class TheoremManager {
|
||||
final private TheoremDao theoremDao;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user