1   package org.weda.workflow;
2   
3   import java.util.Map;
4   
5   /**
6    *
7    * @author Mikhail Titov
8    */
9   public class TestPathAdapter implements PathAdapter{
10      public Object adaptPath(Path path, Map params) {
11          return path.getPath();
12      }    
13  
14      public String getCurrentPage() {
15          return null;
16      }
17  }