Fix document tenant configuration api (#567)
* Added link to system docu * Rename feign client to MgmtTenantManagementClient Signed-off-by: Jonathan Philip Knoblauch <JonathanPhilip.Knoblauch@bosch-si.com>
This commit is contained in:
committed by
Michael Hirsch
parent
4fab134168
commit
4f79b8ba47
@@ -8,13 +8,13 @@
|
||||
*/
|
||||
package org.eclipse.hawkbit.mgmt.client.resource;
|
||||
|
||||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtSystemRestApi;
|
||||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtTenantManagementRestApi;
|
||||
import org.springframework.cloud.netflix.feign.FeignClient;
|
||||
|
||||
/**
|
||||
* Client binding for the {@link MgmtSystemRestApi}.
|
||||
* Client binding for the {@link MgmtTenantManagementRestApi}.
|
||||
*
|
||||
*/
|
||||
@FeignClient(name = "MgmtSystemClient", url = "${hawkbit.url:localhost:8080}")
|
||||
public interface MgmtSystemClientResource extends MgmtSystemRestApi {
|
||||
@FeignClient(name = "MgmtTenantManagementClient", url = "${hawkbit.url:localhost:8080}")
|
||||
public interface MgmtTenantManagementClientResource extends MgmtTenantManagementRestApi {
|
||||
}
|
||||
Reference in New Issue
Block a user