}
private static WorkspaceInfo getWorkpsaceInfoFromPath(String wkPath) {
try
{
GetWorkspaceFromPathCommand gwp = new GetWorkspaceFromPathCommand(wkPath);
return gwp.execute();
}
catch (PlasticException ex) {
String message = "Error getting workspace from path: " + ex.getMessage();
log.warn(message, ex);
return null;