adapted to the new ReportParsing of CL

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/application-support-layer/aslvre@82463 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2013-10-04 13:38:34 +00:00
parent 96658d280a
commit a9a705a891
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ protected static AtomicInteger vreId = new AtomicInteger(0);
public String checkVREStatus() throws RemoteException {
String currScope = ScopeProvider.instance.get();
ScopeProvider.instance.set(scope);
String toReturn = modelPortType.checkStatus();
String toReturn = modelPortType.checkStatus().getStatus().name();
ScopeProvider.instance.set(currScope);
return toReturn;
}