示例#1
0
 public void reconfigureModel(UUID uuid, ModelConfig modelConfig) throws FOSException {
   try {
     manager.reconfigureModel(uuid, modelConfig);
   } catch (RemoteException e) {
     throw new FOSException(e);
   }
 }
示例#2
0
 public void reconfigureModel(
     UUID uuid, ModelConfig modelConfig, @NotBlank ModelDescriptor descriptor)
     throws FOSException {
   try {
     manager.reconfigureModel(uuid, modelConfig, descriptor);
   } catch (RemoteException e) {
     throw new FOSException(e);
   }
 }