Class ModuleInstallDetail
- java.lang.Object
-
- org.openbravo.service.centralrepository.ModuleInstallDetail
-
public class ModuleInstallDetail extends Object
Marshals module details for installation objects returned fromCentralRepository
service requests
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ModuleInstallDetail
fromJson(org.codehaus.jettison.json.JSONObject jsonResponse)
Marshals json from central repository service into a module details for installation instanceString[]
getDependencyErrors()
Module[]
getModulesToInstall()
Module[]
getModulesToUpdate()
boolean
isValidConfiguration()
void
setDependencyErrors(String[] dependencyErrors)
void
setModulesToInstall(Module[] modulesToInstall)
void
setModulesToUpdate(Module[] modulesToUpdate)
void
setValidConfiguration(boolean validConfiguration)
-
-
-
Method Detail
-
fromJson
public static ModuleInstallDetail fromJson(org.codehaus.jettison.json.JSONObject jsonResponse)
Marshals json from central repository service into a module details for installation instance
-
getDependencyErrors
public String[] getDependencyErrors()
-
setDependencyErrors
public void setDependencyErrors(String[] dependencyErrors)
-
getModulesToInstall
public Module[] getModulesToInstall()
-
setModulesToInstall
public void setModulesToInstall(Module[] modulesToInstall)
-
getModulesToUpdate
public Module[] getModulesToUpdate()
-
setModulesToUpdate
public void setModulesToUpdate(Module[] modulesToUpdate)
-
isValidConfiguration
public boolean isValidConfiguration()
-
setValidConfiguration
public void setValidConfiguration(boolean validConfiguration)
-
-