Examples of url()

@param url File URL or path relative to data directory @return File indicated by provided URL @see Files#url(File,String)
  • org.jeecgframework.core.annotation.config.AutoMenu.url()
  • org.jfrog.build.api.builder.BuildInfoBuilder.url()
    Sets the URL of the build @param url Build URL @return Builder instance
  • org.jfrog.build.api.builder.BuildInfoMavenBuilder.url()
    Sets the URL of the build @param url Build URL @return Builder instance
  • org.jsoup.Connection.url()
    Set the request URL to fetch. The protocol must be HTTP or HTTPS. @param url URL to connect to @return this Connection, for chaining
  • org.jsoup.Connection.Response.url()
  • org.mifosplatform.mix.data.NamespaceData.url()
  • org.onesocialweb.model.vcard4.VCard4Factory.url()
  • org.picketlink.idm.config.LDAPStoreConfigurationBuilder.url()
  • org.sgx.yuigwt.galleryexplorer.client.api.Module.url()
    gallery module url @return
  • org.stjs.testing.annotation.HTMLFixture.url()
  • play.mvc.Call.url()
    The request URL.

  • Examples of ariba.ui.aribaweb.util.AWResource.url()

            if (resource == null) {
                response.appendContent(Fmt.S("Cannot find resource named: %s",HTML.escape(filename)));
            }
            else {
                if (Log.aribawebResource_brand.isDebugEnabled()) {
                    String location = resource.url();
                    if (resource instanceof AWFileResource) {
                        AWFileResource file = (AWFileResource)resource;
                        location = file._fullPath();
                    }
                    Log.aribawebResource_brand.debug("Found: %s", location);
    View Full Code Here

    Examples of au.com.dius.pact.model.MockProviderConfig.url()

            final MockProviderConfig config = MockProviderConfig.createDefault();

            VerificationResult result = fragment.runConsumer(config, new TestRun() {
                public void run(MockProviderConfig config) {
                    try {
                        runTest(config.url());
                    } catch(Exception e) {
                        fail("error thrown: "+e);
                    }
                }
            });
    View Full Code Here

    Examples of ca.uhn.fhir.model.api.annotation.Extension.url()

          } else if (extensionAttr != null) {
            /*
             * Child is an extension
             */
            Class<? extends IElement> et = (Class<? extends IElement>) nextElementType;
            RuntimeChildDeclaredExtensionDefinition def = new RuntimeChildDeclaredExtensionDefinition(next, childAnnotation, descriptionAnnotation, extensionAttr, elementName, extensionAttr.url(), et);
            orderMap.put(order, def);
            if (IElement.class.isAssignableFrom(nextElementType)) {
              addScanAlso((Class<? extends IElement>) nextElementType);
            }
          } else if (BaseResourceReference.class.isAssignableFrom(nextElementType)) {
    View Full Code Here

    Examples of cn.com.annotations.Link.url()

                LinkElementTag linkElement = new LinkElementTag();
                // 设定动态参数参数
                StringBuilder href = new StringBuilder(_HREF_VALUE);
                Link link = e.link();
                // 设定链接属性
                if (!StringUtil.isEmpty(link.url())) {
                    href = new StringBuilder(link.url());
                }
                // 设定参数列表
                if (link.parameters() != null && link.parameters().length > 0) {
                    if (href.indexOf(_PARAMETER_SIGN_CHAR) == -1) {
    View Full Code Here

    Examples of com.caucho.remote.HessianClient.url()

      @Override
      public void setProxyType(Annotation ann)
      {
        HessianClient client = (HessianClient) ann;

        setURL(client.url());
        setUserName(client.userName());
        setPassword(client.password());
      }
     
      /**
     
    View Full Code Here

    Examples of com.google.api.services.urlshortener.Urlshortener.url()

            // URLの設定
            Url url = new Url();
            url.setLongUrl("http://plucial.com/u/" + userModel.getKey().getName() + "/a/" +activityModel.getKey().getName());

            // 短縮URLの発行
            url = urlshortener.url().insert(url).execute();

            return url.getId();
        }

        /**
     
    View Full Code Here

    Examples of com.google.appengine.api.taskqueue.TaskOptions.url()

        private SystemVerifierService systemVerifierService = new SystemVerifierServiceImpl();

        protected void doGet(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp)
                throws javax.servlet.ServletException, java.io.IOException {
            TaskOptions taskOptions = TaskOptions.Builder.withDefaults();
            taskOptions.url(VERIFY_TASK_URL);
            taskOptions.method(Method.GET);
            taskOptions.countdownMillis(VERIFY_INTERVAL);
            QueueFactory.getDefaultQueue().add(taskOptions);
            this.logger.info("Next verification task scheduled at " + (VERIFY_INTERVAL / 60.0 / 60 / 1000)
                    + " hours later.");
    View Full Code Here

    Examples of com.psddev.cms.tool.ToolPageContext.url()

                    page.writeEnd();

                    if (Boolean.TRUE.equals(request.getAttribute(PERSISTENT_PREVIEW_ATTRIBUTE))) {
                        page.writeStart("a",
                                "target", "_blank",
                                "href", page.url("", "_clearPreview", true));
                            page.writeHtml("(Previewing - View Live Instead)");
                        page.writeEnd();
                    }

                    page.writeStart("a",
    View Full Code Here

    Examples of com.smartcodeltd.jenkinsci.plugins.buildmonitor.facade.RelativeLocation.url()

        }

        private RelativeLocation locatedAt(String url) {

            RelativeLocation location = mock(RelativeLocation.class);
            when(location.url()).thenReturn(url);

            return location;
        }

        private BuildAugmentor augmentedWith(Class<? extends Augmentation>... augmentationsToSupport) {
    View Full Code Here

    Examples of de.anomic.crawler.CrawlProfile.url()

                                while (iter.hasNext()) {
                                    if ((entry = iter.next()) == null) continue;
                                    String value = null;
                                   
                                    location: switch (option) {
                                        case URL:       value = (entry.url() == null) ? null : entry.url().toString(); break location;
                                        case ANCHOR:    value = entry.name(); break location;
                                        case DEPTH:     value = Integer.toString(entry.depth()); break location;
                                        case INITIATOR:
                                            value = (entry.initiator() == null || entry.initiator().length == 0) ? "proxy" : ASCII.String(entry.initiator());
                                            break location;
    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.