Commit 7e8bf000 authored by Noel Alonso's avatar Noel Alonso
Browse files

Elimina userService por estar el librería

Modifica referencias
parent 3f583bce
Loading
Loading
Loading
Loading
+0 −38
Original line number Diff line number Diff line
package es.redmic.atlascommands.config;

/*-
 * #%L
 * Atlas-management
 * %%
 * Copyright (C) 2019 REDMIC Project / Server
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import org.springframework.stereotype.Service;

import es.redmic.restlib.common.service.UserUtilsServiceItfc;
import es.redmic.restlib.config.UserBaseService;

@Service
public class UserService extends UserBaseService implements UserUtilsServiceItfc {

	/*
	 * Implementa la interfaz para obtener información de usuarios
	 */

	public UserService() {
		super();
	}
}
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@ import es.redmic.atlascommands.aggregate.CategoryAggregate;
import es.redmic.atlascommands.commands.category.CreateCategoryCommand;
import es.redmic.atlascommands.commands.category.DeleteCategoryCommand;
import es.redmic.atlascommands.commands.category.UpdateCategoryCommand;
import es.redmic.atlascommands.config.UserService;
import es.redmic.atlascommands.statestore.CategoryStateStore;
import es.redmic.atlascommands.streams.CategoryEventStreams;
import es.redmic.atlaslib.dto.category.CategoryDTO;
@@ -58,6 +57,7 @@ import es.redmic.commandslib.commands.CommandHandler;
import es.redmic.commandslib.streaming.common.StreamConfig;
import es.redmic.commandslib.streaming.common.StreamConfig.Builder;
import es.redmic.exception.factory.ExceptionFactory;
import es.redmic.restlib.config.UserService;

@Component
@KafkaListener(topics = "${broker.topic.category}")
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,6 @@ import es.redmic.atlascommands.commands.layer.CreateLayerCommand;
import es.redmic.atlascommands.commands.layer.DeleteLayerCommand;
import es.redmic.atlascommands.commands.layer.RefreshLayerCommand;
import es.redmic.atlascommands.commands.layer.UpdateLayerCommand;
import es.redmic.atlascommands.config.UserService;
import es.redmic.atlascommands.statestore.LayerStateStore;
import es.redmic.atlascommands.streams.LayerEventStreams;
import es.redmic.atlaslib.dto.layer.LayerDTO;
@@ -68,6 +67,7 @@ import es.redmic.commandslib.commands.CommandHandler;
import es.redmic.commandslib.streaming.common.StreamConfig;
import es.redmic.commandslib.streaming.common.StreamConfig.Builder;
import es.redmic.exception.factory.ExceptionFactory;
import es.redmic.restlib.config.UserService;

@Component
@KafkaListener(topics = "${broker.topic.layer}")
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@ import es.redmic.atlascommands.aggregate.ThemeInspireAggregate;
import es.redmic.atlascommands.commands.themeinspire.CreateThemeInspireCommand;
import es.redmic.atlascommands.commands.themeinspire.DeleteThemeInspireCommand;
import es.redmic.atlascommands.commands.themeinspire.UpdateThemeInspireCommand;
import es.redmic.atlascommands.config.UserService;
import es.redmic.atlascommands.statestore.ThemeInspireStateStore;
import es.redmic.atlascommands.streams.ThemeInspireEventStreams;
import es.redmic.atlaslib.dto.themeinspire.ThemeInspireDTO;
@@ -58,6 +57,7 @@ import es.redmic.commandslib.commands.CommandHandler;
import es.redmic.commandslib.streaming.common.StreamConfig;
import es.redmic.commandslib.streaming.common.StreamConfig.Builder;
import es.redmic.exception.factory.ExceptionFactory;
import es.redmic.restlib.config.UserService;

@Component
@KafkaListener(topics = "${broker.topic.theme-inspire}")
+0 −40
Original line number Diff line number Diff line
package es.redmic.atlasview.config;

/*-
 * #%L
 * Atlas-query-endpoint
 * %%
 * Copyright (C) 2019 REDMIC Project / Server
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import org.springframework.stereotype.Service;
import org.springframework.web.context.annotation.SessionScope;

import es.redmic.restlib.common.service.UserUtilsServiceItfc;
import es.redmic.restlib.config.UserBaseService;

@SessionScope
@Service
public class UserService extends UserBaseService implements UserUtilsServiceItfc {

	/*
	 * Implementa la interfaz para obtener información de usuarios
	 */

	public UserService() {
		super();
	}
}