Package er.rest

Examples of er.rest.ERXRestRequestNode.takeValueForKeyPath()


*/
public class ERXFormRestParser implements IERXRestParser {
  public ERXRestRequestNode parseRestRequest(IERXRestRequest request, Delegate delegate, ERXRestContext context) {
    ERXRestRequestNode rootNode = new ERXRestRequestNode();
    for (String keyPath : request.keyNames()) {
      rootNode.takeValueForKeyPath(request.objectForKey(keyPath), keyPath);
    }
    return rootNode;
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.