View Javadoc

1   package net.sf.crispy.impl.rest;
2   
3   
4   public class Deserializer {
5   
6   
7   	
8   	public static Object deserialize(String pvXmlStr) throws Exception {
9   		RestContentHandler lvHandler = new RestContentHandler();
10  		new Parser().parse(pvXmlStr, lvHandler); 
11  		return lvHandler.getResult();
12  	}
13  
14  	
15  	
16  }