io.imunity.console.views.services.ServicesController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unity-server-console Show documentation
Show all versions of unity-server-console Show documentation
Task oriented web based administration UI
/*
* Copyright (c) 2019 Bixbit - Krzysztof Benedyczak. All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package io.imunity.console.views.services;
import org.springframework.stereotype.Component;
import io.imunity.console.views.services.base.ServiceControllerBase;
import io.imunity.vaadin.elements.NotificationPresenter;
import io.imunity.vaadin.auth.services.ServiceControllersRegistry;
import pl.edu.icm.unity.base.message.MessageSource;
import pl.edu.icm.unity.engine.api.EndpointManagement;
/**
* Controller for standard services
*
* @author P.Piernik
*
*/
@Component
class ServicesController extends ServiceControllerBase
{
ServicesController(MessageSource msg, EndpointManagement endpointMan,
ServiceControllersRegistry controllersRegistry, NotificationPresenter notificationPresenter)
{
super(msg, endpointMan, controllersRegistry, notificationPresenter);
}
}