api: fix refactored ApiServerService interface to api

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2014-08-24 15:52:55 +02:00
parent 68e094ebaf
commit 74f5795908
3 changed files with 5 additions and 4 deletions

View File

@ -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>

View File

@ -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;

View File

@ -37,5 +37,4 @@ public interface APIAuthenticator {
HttpSession session, String remoteAddress, String responseType,
StringBuilder auditTrailSb, final HttpServletResponse resp) throws ServerApiException;
public APIAuthenticationType getAPIType();
}