bug 5190: adding some more methods for the functionality

This commit is contained in:
abhishek 2010-09-27 16:54:28 -07:00
parent 677d8894ea
commit 89cce1a023
2 changed files with 7 additions and 0 deletions

View File

@ -2260,5 +2260,6 @@ public interface ManagementServer {
* Fetches the version of cloud stack * Fetches the version of cloud stack
*/ */
String getVersion(); String getVersion();
boolean updateCertificate(String certificatePath);
} }

View File

@ -9110,6 +9110,12 @@ public class ManagementServerImpl implements ManagementServer {
} }
return version; return version;
} }
@Override
public boolean updateCertificate(String certificatePath)
{
return false;
}
} }