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 org.exoplatform.portal.webui.navigation.UIPortalNavigation.url()

            String nodeId = node.getId();

            json.put("label", node.getEncodedResolvedLabel());
            json.put("hasChild", tnode.hasChild());
            json.put("isExpanded", tnode.isExpanded());
            json.put("collapseURL", uiPortalNavigation.url("CollapseNode", nodeId));

            ResourceURL rsURL = res.createResourceURL();
            rsURL.setResourceID(nodeId);
            json.put("getNodeURL", rsURL.toString());
    View Full Code Here

    Examples of org.geoserver.platform.GeoServerResourceLoader.url()

    */
    public class DSFinderRepository extends org.geotools.data.gen.DSFinderRepository {

        protected URL getURLForLocation(String location) throws IOException {
            GeoServerResourceLoader loader = GeoServerExtensions.bean(GeoServerResourceLoader.class);
            File f = loader.url(location);       
            URL url = null;
            if (f.exists()) {
                url = f.toURI().toURL();
            } else {
                url = new URL(location);
    View Full Code Here

    Examples of org.jeecgframework.core.annotation.config.AutoMenu.url()

              StringBuffer menuKey = new StringBuffer();
              menuKey.append(autoMenu.name());
              menuKey.append(KEY_SPLIT);
              menuKey.append(autoMenu.level() == null ? "" : autoMenu.level());
              menuKey.append(KEY_SPLIT);
              menuKey.append(autoMenu.url() == null ? "" : autoMenu.url());
             
              TSFunction function = null;
              //判断菜单map的key是否包含当前key,不包含则插入一条菜单数据
              if (!functionMap.containsKey(menuKey.toString())) {
                function = new TSFunction();
    View Full Code Here

    Examples of org.jfrog.build.api.builder.BuildInfoBuilder.url()

            if (StringUtils.isNotBlank(buildNumber)) {
                builder.number(buildNumber);
            }
            String buildUrl = clientConf.info.getBuildUrl();
            if (StringUtils.isNotBlank(buildUrl)) {
                builder.url(buildUrl);
            }
            String vcsRevision = clientConf.info.getVcsRevision();
            if (StringUtils.isNotBlank(vcsRevision)) {
                builder.vcsRevision(vcsRevision);
            }
    View Full Code Here

    Examples of org.jfrog.build.api.builder.BuildInfoMavenBuilder.url()

                    clientConf.info.getParentBuildName()).
                    parentNumber(clientConf.info.getParentBuildNumber());

            String buildUrl = clientConf.info.getBuildUrl();
            if (StringUtils.isNotBlank(buildUrl)) {
                builder.url(buildUrl);
            }
            String vcsRevision = clientConf.info.getVcsRevision();
            if (StringUtils.isNotBlank(vcsRevision)) {
                builder.vcsRevision(vcsRevision);
            }
    View Full Code Here

    Examples of org.jsoup.Connection.url()

        ////////////////////
        //On se connecte au site et on charge le document html
        Connection connection = Jsoup.connect(urlServer);
        connection.timeout(30*1000); //in miliseondes
       
        Document doc = connection.url(urlServer).get();
       
        //On récupère dans ce document la premiere balise ayant comme nom h1 et pour attribut class="title"
        Elements elements= doc.getElementsByClass("boxStats");
       
        //Voir aussi si on peut ajouter le WN8 des joueurs
    View Full Code Here

    Examples of org.jsoup.Connection.Response.url()

            // Assert we are logged in
            if (resp.hasHeader("Location") && resp.header("Location").contains("password")) {
                // Wrong password
                throw new IOException("Wrong password");
            }
            if (resp.url().toExternalForm().contains("bad_form")) {
                throw new IOException("Login form was incorrectly submitted");
            }
            if (resp.cookie("auth_secure") == null ||
                resp.cookie("auth") == null) {
                throw new IOException("No auth_secure or auth cookies received");
    View Full Code Here

    Examples of org.mifosplatform.mix.data.NamespaceData.url()

            String qname = taxonomy.getName();
            if (prefix != null && (!prefix.isEmpty())) {
                final NamespaceData ns = this.readNamespaceService.retrieveNamespaceByPrefix(prefix);
                if (ns != null) {

                    this.root.addNamespace(prefix, ns.url());
                }
                qname = prefix + ":" + taxonomy.getName();

            }
            final Element xmlElement = rootElement.addElement(qname);
    View Full Code Here

    Examples of org.onesocialweb.model.vcard4.VCard4Factory.url()

              if (emailF.getText().length() > 0)
                profile.addField(profileFactory.email(emailF.getText()));
              if (telF.getText().length() > 0)
                profile.addField(profileFactory.tel(telF.getText()));
              if (urlF.getText().length() > 0)
                profile.addField(profileFactory.url(urlF.getText()));
            } catch (CardinalityException e) {

            } catch (UnsupportedFieldException e) {

            }
    View Full Code Here

    Examples of org.picketlink.idm.config.LDAPStoreConfigurationBuilder.url()

            ModelNode bindDn = LDAPStoreResourceDefinition.BIND_DN.resolveModelAttribute(context, ldapIdentityStore);
            ModelNode bindCredential = LDAPStoreResourceDefinition.BIND_CREDENTIAL.resolveModelAttribute(context, ldapIdentityStore);
            ModelNode baseDn = LDAPStoreResourceDefinition.BASE_DN_SUFFIX.resolveModelAttribute(context, ldapIdentityStore);

            if (url.isDefined()) {
                storeConfig.url(url.asString());
            }

            if (bindDn.isDefined()) {
                storeConfig.bindDN(bindDn.asString());
            }
    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.