refactor of manager package

This commit is contained in:
lucio 2024-02-22 16:28:52 +01:00
parent a8d7d6c381
commit 6ce907d32d
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
package manager;
package org.gcube.service.helloworld.manager;
import org.gcube.common.security.providers.SecretManagerProvider;
import org.gcube.common.security.secrets.Secret;

View File

@ -7,14 +7,13 @@ import javax.ws.rs.core.MediaType;
import org.gcube.common.security.providers.SecretManagerProvider;
import org.gcube.common.security.secrets.Secret;
import org.gcube.service.helloworld.manager.HelloWorldManager;
import org.gcube.smartgears.ContextProvider;
import org.gcube.smartgears.annotations.ManagedBy;
import org.gcube.smartgears.utils.InnerMethodName;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import manager.HelloWorldManager;
@ManagedBy(HelloWorldManager.class)
@Path("hello")
public class HelloService {