org.restlet.data.Request.getEntityAsForm()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(5.0k)|赞(0)|评价(0)|浏览(274)

本文整理了Java中org.restlet.data.Request.getEntityAsForm方法的一些代码示例,展示了Request.getEntityAsForm的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getEntityAsForm方法的具体详情如下:
包路径:org.restlet.data.Request
类名称:Request
方法名:getEntityAsForm

Request.getEntityAsForm介绍

暂无

代码示例

代码示例来源:origin: internetarchive/heritrix3

  1. @Override
  2. public void acceptRepresentation(Representation entity) throws ResourceException {
  3. Form form = getRequest().getEntityAsForm();
  4. chosenEngine = form.getFirstValue("engine");
  5. String script = form.getFirstValue("script");
  6. if(StringUtils.isBlank(script)) {
  7. script="";
  8. }
  9. ScriptEngine eng = MANAGER.getEngineByName(chosenEngine);
  10. scriptingConsole.bind("scriptResource", this);
  11. scriptingConsole.execute(eng, script);
  12. scriptingConsole.unbind("scriptResource");
  13. //TODO: log script, results somewhere; job log INFO?
  14. getResponse().setEntity(represent());
  15. }

代码示例来源:origin: internetarchive/heritrix3

  1. public void acceptRepresentation(Representation entity) throws ResourceException {
  2. if (appCtx == null) {
  3. throw new ResourceException(404);
  4. }
  5. // copy op?
  6. Form form = getRequest().getEntityAsForm();
  7. beanPath = form.getFirstValue("beanPath");
  8. String newVal = form.getFirstValue("newVal");
  9. if(newVal!=null) {
  10. int i = beanPath.indexOf(".");
  11. String beanName = i<0?beanPath:beanPath.substring(0,i);
  12. Object namedBean = appCtx.getBean(beanName);
  13. BeanWrapperImpl bwrap = new BeanWrapperImpl(namedBean);
  14. String propPath = beanPath.substring(i+1);
  15. Object coercedVal = bwrap.convertIfNecessary(newVal, bwrap.getPropertyValue(propPath).getClass());
  16. bwrap.setPropertyValue(propPath, coercedVal);
  17. }
  18. Reference ref = getRequest().getResourceRef();
  19. ref.setPath(getBeansRefPath());
  20. ref.addSegment(beanPath);
  21. getResponse().redirectSeeOther(ref);
  22. }

代码示例来源:origin: internetarchive/heritrix3

  1. throws ResourceException {
  2. Form form = getRequest().getEntityAsForm();
  3. String newContents = form.getFirstValue("contents");
  4. EditRepresentation er;

代码示例来源:origin: internetarchive/heritrix3

  1. form = getRequest().getEntityAsForm();
  2. String copyTo = form.getFirstValue("copyTo");
  3. if (copyTo != null) {

代码示例来源:origin: internetarchive/heritrix3

  1. @Override
  2. public void acceptRepresentation(Representation entity) throws ResourceException {
  3. Form form = getRequest().getEntityAsForm();
  4. String action = form.getFirstValue("action");
  5. if("rescan".equals(action)) {

代码示例来源:origin: org.restlet/org.restlet

  1. /**
  2. * Returns the entity as a DOM representation.<br>
  3. * Note that this triggers the parsing of the entity into a reusable DOM
  4. * document stored in memory.<br>
  5. * This method and the related getEntity*() methods can only be invoked
  6. * once.
  7. *
  8. * @return The entity as a DOM representation.
  9. */
  10. @Override
  11. public Form getEntityAsForm() {
  12. return getWrappedRequest().getEntityAsForm();
  13. }

代码示例来源:origin: org.geowebcache/gwc-rest

  1. public void doPost(Request req, Response resp) throws RestletException {
  2. Form form = req.getEntityAsForm();

代码示例来源:origin: org.archive.heritrix/heritrix-engine

  1. @Override
  2. public void acceptRepresentation(Representation entity) throws ResourceException {
  3. Form form = getRequest().getEntityAsForm();
  4. chosenEngine = form.getFirstValue("engine");
  5. String script = form.getFirstValue("script");
  6. if(StringUtils.isBlank(script)) {
  7. script="";
  8. }
  9. ScriptEngine eng = MANAGER.getEngineByName(chosenEngine);
  10. scriptingConsole.bind("scriptResource", this);
  11. scriptingConsole.execute(eng, script);
  12. scriptingConsole.unbind("scriptResource");
  13. //TODO: log script, results somewhere; job log INFO?
  14. getResponse().setEntity(represent());
  15. }

代码示例来源:origin: org.archive.heritrix/heritrix-engine

  1. public void acceptRepresentation(Representation entity) throws ResourceException {
  2. if (appCtx == null) {
  3. throw new ResourceException(404);
  4. }
  5. // copy op?
  6. Form form = getRequest().getEntityAsForm();
  7. beanPath = form.getFirstValue("beanPath");
  8. String newVal = form.getFirstValue("newVal");
  9. if(newVal!=null) {
  10. int i = beanPath.indexOf(".");
  11. String beanName = i<0?beanPath:beanPath.substring(0,i);
  12. Object namedBean = appCtx.getBean(beanName);
  13. BeanWrapperImpl bwrap = new BeanWrapperImpl(namedBean);
  14. String propPath = beanPath.substring(i+1);
  15. Object coercedVal = bwrap.convertIfNecessary(newVal, bwrap.getPropertyValue(propPath).getClass());
  16. bwrap.setPropertyValue(propPath, coercedVal);
  17. }
  18. Reference ref = getRequest().getResourceRef();
  19. ref.setPath(getBeansRefPath());
  20. ref.addSegment(beanPath);
  21. getResponse().redirectSeeOther(ref);
  22. }

代码示例来源:origin: org.restlet/org.restlet

  1. final Form form = request.getEntityAsForm();

代码示例来源:origin: org.archive.heritrix/heritrix-engine

  1. throws ResourceException {
  2. Form form = getRequest().getEntityAsForm();
  3. String newContents = form.getFirstValue("contents");
  4. EditRepresentation er;

代码示例来源:origin: org.archive.heritrix/heritrix-engine

  1. form = getRequest().getEntityAsForm();
  2. String copyTo = form.getFirstValue("copyTo");
  3. if (copyTo != null) {

代码示例来源:origin: org.archive.heritrix/heritrix-engine

  1. @Override
  2. public void acceptRepresentation(Representation entity) throws ResourceException {
  3. Form form = getRequest().getEntityAsForm();
  4. String action = form.getFirstValue("action");
  5. if("rescan".equals(action)) {

代码示例来源:origin: org.geowebcache/gwc-rest

  1. Form form = req.getEntityAsForm();

相关文章