mirror of https://github.com/apache/cloudstack.git
api: fix refactored ApiServerService interface to api
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
68e094ebaf
commit
74f5795908
|
|
@ -35,6 +35,11 @@
|
|||
<groupId>com.google.code.gson</groupId>
|
||||
<artifactId>gson</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
<version>${cs.servlet.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cloudstack</groupId>
|
||||
<artifactId>cloud-framework-db</artifactId>
|
||||
|
|
|
|||
|
|
@ -17,9 +17,6 @@
|
|||
package org.apache.cloudstack.api;
|
||||
|
||||
import com.cloud.exception.CloudAuthenticationException;
|
||||
import org.apache.cloudstack.api.ResponseObject;
|
||||
import org.apache.cloudstack.api.ServerApiException;
|
||||
|
||||
import javax.servlet.http.HttpSession;
|
||||
import java.util.Map;
|
||||
|
||||
|
|
|
|||
|
|
@ -37,5 +37,4 @@ public interface APIAuthenticator {
|
|||
HttpSession session, String remoteAddress, String responseType,
|
||||
StringBuilder auditTrailSb, final HttpServletResponse resp) throws ServerApiException;
|
||||
public APIAuthenticationType getAPIType();
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue