mirror of https://github.com/apache/cloudstack.git
bug 5190: adding some more methods for the functionality
This commit is contained in:
parent
677d8894ea
commit
89cce1a023
|
|
@ -2260,5 +2260,6 @@ public interface ManagementServer {
|
|||
* Fetches the version of cloud stack
|
||||
*/
|
||||
String getVersion();
|
||||
boolean updateCertificate(String certificatePath);
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9110,6 +9110,12 @@ public class ManagementServerImpl implements ManagementServer {
|
|||
}
|
||||
return version;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean updateCertificate(String certificatePath)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue