Skip to content

Commit d62cca0

Browse files
authored
chore: implementerer de nye Conrollable interface fra felle-server (#748)
1 parent a4fa69f commit d62cca0

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,11 @@
111111
<artifactId>felles-db</artifactId>
112112
<version>${felles.version}</version>
113113
</dependency>
114+
<dependency>
115+
<groupId>no.nav.foreldrepenger.felles</groupId>
116+
<artifactId>felles-server</artifactId>
117+
<version>${felles.version}</version>
118+
</dependency>
114119
<dependency>
115120
<groupId>no.nav.foreldrepenger.felles</groupId>
116121
<artifactId>felles-kontekst</artifactId>

task/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@
3333
<artifactId>felles-db</artifactId>
3434
<scope>provided</scope>
3535
</dependency>
36+
<dependency>
37+
<groupId>no.nav.foreldrepenger.felles</groupId>
38+
<artifactId>felles-server</artifactId>
39+
<scope>provided</scope>
40+
</dependency>
3641

3742
<dependency>
3843
<groupId>org.slf4j</groupId>

task/src/main/java/no/nav/vedtak/felles/prosesstask/impl/BatchTaskScheduler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
@ApplicationScoped
2020
@ActivateRequestContext
2121
@Transactional
22-
public class BatchTaskScheduler implements Controllable {
22+
public class BatchTaskScheduler implements no.nav.vedtak.server.Controllable, Controllable {
2323

2424
private static final Logger LOG = LoggerFactory.getLogger(BatchTaskScheduler.class);
2525
private TaskManagerRepositoryImpl taskRepository;

task/src/main/java/no/nav/vedtak/felles/prosesstask/impl/TaskManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
* Main class handling polling tasks and dispatching these.
4848
*/
4949
@ApplicationScoped
50-
public class TaskManager implements Controllable {
50+
public class TaskManager implements no.nav.vedtak.server.Controllable, Controllable {
5151

5252
public static final String TASK_MANAGER_POLLING_WAIT = "task.manager.polling.wait";
5353
public static final String TASK_MANAGER_POLLING_DELAY = "task.manager.polling.delay";

0 commit comments

Comments
 (0)