All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jfrog.build.api.dependency.PropertySearchResult Maven / Gradle / Ivy

There is a newer version: 2.41.23
Show newest version
package org.jfrog.build.api.dependency;

import org.apache.commons.lang3.StringUtils;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Shay Yaakov
 */
public class PropertySearchResult {
    private List results = new ArrayList();

    public List getResults() {
        return results;
    }

    public void setResults(List results) {
        this.results = results;
    }

    public static class SearchEntry {
        private String uri;
        private String artifactoryUrl;
        private String repoKey;
        private String filePath;

        public String getUri() {
            return uri;
        }

        public void setUri(String uri) {
            this.uri = uri;
            this.artifactoryUrl = StringUtils.substringBefore(uri, "/api/storage/");

            String repoPath = StringUtils.substringAfter(uri, "/api/storage/");
            this.repoKey = StringUtils.substringBefore(repoPath, "/");
            this.filePath = StringUtils.substringAfter(repoPath, "/");
        }

        public String getRepoUri() {
            return artifactoryUrl + "/" + repoKey;
        }

        public String getRepoPath() {
            return repoKey + "/" + filePath;
        }

        public String getFilePath() {
            return filePath;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy