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

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

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

Request.getAttributes介绍

暂无

代码示例

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

  1. public ReportGenResource(Context ctx, Request req, Response res) throws ResourceException {
  2. super(ctx, req, res);
  3. getVariants().add(new Variant(MediaType.TEXT_PLAIN));
  4. reportClass = (String)req.getAttributes().get("reportClass");
  5. }

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

  1. @Override
  2. protected Reference determineRootRef(Request request) {
  3. try {
  4. return new Reference(
  5. EngineApplication.this.getEngine()
  6. .getJob(TextUtils.urlUnescape(
  7. (String)request.getAttributes().get("job")))
  8. .getJobDir().getCanonicalFile().toURI().toString());
  9. } catch (IOException e) {
  10. throw new RuntimeException(e);
  11. }
  12. }};
  13. jobdir.setListingAllowed(true);

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

  1. public JobRelatedResource(Context ctx, Request req, Response res) throws ResourceException {
  2. super(ctx, req, res);
  3. cj = getEngine().getJob((String)req.getAttributes().get("job"));
  4. if(cj==null) {
  5. throw new ResourceException(404);
  6. }
  7. }

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

  1. public JobResource(Context ctx, Request req, Response res)
  2. throws ResourceException {
  3. super(ctx, req, res);
  4. setModifiable(true);
  5. getVariants().add(new Variant(MediaType.TEXT_HTML));
  6. getVariants().add(new Variant(MediaType.APPLICATION_XML));
  7. cj = getEngine().getJob(
  8. TextUtils.urlUnescape((String) req.getAttributes().get("job")));
  9. Configuration tmpltCfg = new Configuration();
  10. tmpltCfg.setClassForTemplateLoading(this.getClass(),"");
  11. tmpltCfg.setObjectWrapper(ObjectWrapper.BEANS_WRAPPER);
  12. setTemplateConfiguration(tmpltCfg);
  13. }
  14. public void setTemplateConfiguration(Configuration tmpltCfg) {

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

  1. public BeanBrowseResource(Context ctx, Request req, Response res) throws ResourceException {
  2. super(ctx, req, res);
  3. getVariants().add(new Variant(MediaType.TEXT_HTML));
  4. getVariants().add(new Variant(MediaType.APPLICATION_XML));
  5. setModifiable(true); // accept POSTs
  6. appCtx = cj.getJobContext();
  7. beanPath = (String)req.getAttributes().get("beanPath");
  8. if (beanPath!=null) {
  9. try {
  10. beanPath = URLDecoder.decode(beanPath,"UTF-8");
  11. } catch (UnsupportedEncodingException e) {
  12. // inconceivable! UTF-8 required all Java impls
  13. }
  14. } else {
  15. beanPath = "";
  16. }
  17. Configuration tmpltCfg = new Configuration();
  18. tmpltCfg.setClassForTemplateLoading(this.getClass(),"");
  19. tmpltCfg.setObjectWrapper(ObjectWrapper.BEANS_WRAPPER);
  20. setTemplateConfiguration(tmpltCfg);
  21. }
  22. public void setTemplateConfiguration(Configuration tmpltCfg) {

代码示例来源:origin: org.sonatype.nexus/nexus-indexer-lucene-rest-api

  1. @Override
  2. protected String getRepositoryId( Request request )
  3. {
  4. return String.valueOf( request.getAttributes().get( REPOSITORY_ID_KEY ) );
  5. }

代码示例来源:origin: org.sonatype.nexus/nexus-rest-api

  1. /**
  2. * Pull the repository Id out of the Request.
  3. *
  4. * @param request
  5. * @return
  6. */
  7. protected String getRepositoryId( Request request )
  8. {
  9. return request.getAttributes().get( REPOSITORY_ID_KEY ).toString();
  10. }

代码示例来源:origin: org.sonatype.nexus/nexus-rest-api

  1. protected String getUserId( Request request )
  2. {
  3. return request.getAttributes().get( ACCOUNT_ID_KEY ).toString();
  4. }
  5. }

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-restlet1x-plugin

  1. /**
  2. * Pull the repository Id out of the Request.
  3. */
  4. protected String getRepositoryId(Request request) {
  5. return request.getAttributes().get(REPOSITORY_ID_KEY).toString();
  6. }

代码示例来源:origin: org.geoserver/rest

  1. /**
  2. * Returns the object which contains information about the page / resource bring requested.
  3. * <p>
  4. * This object is created by the rest dispatcher when a request comes in.
  5. * </p>
  6. */
  7. protected PageInfo getPageInfo() {
  8. return (PageInfo) getRequest().getAttributes().get( PageInfo.KEY );
  9. }

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-rrb-plugin

  1. /**
  2. * DUMMY IMPLEMENTATION, just to satisfy superclass (but why is this class expanding it at all?)
  3. */
  4. @Override
  5. protected ResourceStore getResourceStore(final Request request)
  6. throws NoSuchResourceStoreException, ResourceException
  7. {
  8. return getUnprotectedRepositoryRegistry().getRepository(
  9. request.getAttributes().get(AbstractRepositoryPlexusResource.REPOSITORY_ID_KEY).toString());
  10. }
  11. }

代码示例来源:origin: org.sonatype.nexus/nexus-rest-api

  1. @Override
  2. protected ResourceStore getResourceStore( final Request request )
  3. throws NoSuchRepositoryException,
  4. ResourceException
  5. {
  6. return getUnprotectedRepositoryRegistry().getRepository(
  7. request.getAttributes().get( AbstractRepositoryPlexusResource.REPOSITORY_ID_KEY ).toString() );
  8. }

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

  1. public ReportGenResource(Context ctx, Request req, Response res) throws ResourceException {
  2. super(ctx, req, res);
  3. getVariants().add(new Variant(MediaType.TEXT_PLAIN));
  4. reportClass = (String)req.getAttributes().get("reportClass");
  5. }

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-unpack-plugin

  1. @Override
  2. protected Repository getResourceStore(final Request request)
  3. throws NoSuchResourceStoreException, ResourceException
  4. {
  5. final String repoId = request.getAttributes().get(REPOSITORY_ID_KEY).toString();
  6. return getUnprotectedRepositoryRegistry().getRepository(repoId);
  7. }
  8. }

代码示例来源:origin: org.sonatype.nexus/nexus-rest-api

  1. @Override
  2. protected ResourceStore getResourceStore( final Request request )
  3. throws NoSuchRepositoryException, ResourceException
  4. {
  5. return getRepositoryRegistry().getRepositoryWithFacet( request.getAttributes().get( GROUP_ID_KEY ).toString(),
  6. GroupRepository.class );
  7. }

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-restlet1x-plugin

  1. @Override
  2. protected ResourceStore getResourceStore(final Request request)
  3. throws NoSuchRepositoryException, ResourceException
  4. {
  5. return getRepositoryRegistry().getRepositoryWithFacet(request.getAttributes().get(GROUP_ID_KEY).toString(),
  6. GroupRepository.class);
  7. }

代码示例来源:origin: org.sonatype.nexus.plugins/nexus-restlet1x-plugin

  1. @Override
  2. protected ResourceStore getResourceStore(final Request request)
  3. throws NoSuchRepositoryException,
  4. ResourceException
  5. {
  6. return getUnprotectedRepositoryRegistry().getRepository(
  7. request.getAttributes().get(AbstractRepositoryPlexusResource.REPOSITORY_ID_KEY).toString());
  8. }

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

  1. public JobRelatedResource(Context ctx, Request req, Response res) throws ResourceException {
  2. super(ctx, req, res);
  3. cj = getEngine().getJob((String)req.getAttributes().get("job"));
  4. if(cj==null) {
  5. throw new ResourceException(404);
  6. }
  7. }

代码示例来源:origin: org.sonatype.nexus/nexus-rest-api

  1. public static String findIP( Request request )
  2. {
  3. Form form = (Form) request.getAttributes().get( "org.restlet.http.headers" );
  4. String forwardedIP = getFirstForwardedIp( form.getFirstValue( FORWARD_HEADER ) );
  5. if ( forwardedIP != null )
  6. {
  7. return forwardedIP;
  8. }
  9. List<String> ipAddresses = request.getClientInfo().getAddresses();
  10. return resolveIp( ipAddresses );
  11. }

代码示例来源:origin: org.geoserver.extension/monitor-core

  1. @Test
  2. public void testGetById() throws Exception {
  3. Request req = new Request();
  4. req.getAttributes().put("request", 2);
  5. Response res = new Response(req);
  6. resource.init(null, req, res);
  7. RequestData data = (RequestData) resource.handleObjectGet();
  8. assertEquals("/two", data.getPath());
  9. }

相关文章