mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/server/master/domain/Jar.java [39:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.url = url;
        this.uploadedAt = uploadedAt;
        this.version = (version == null || version.isEmpty()) ?
                "" + System.currentTimeMillis() :
                version;
        this.schedulingInfo = schedulingInfo;
    }

    public URL getUrl() {
        return url;
    }

    public long getUploadedAt() {
        return uploadedAt;
    }

    public String getVersion() {
        return version;
    }

    public SchedulingInfo getSchedulingInfo() {
        return schedulingInfo;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/server/master/store/NamedJob.java [315:336]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            this.url = url;
            this.uploadedAt = uploadedAt;
            this.version = (version == null || version.isEmpty()) ?
                    "" + System.currentTimeMillis() :
                    version;
            this.schedulingInfo = schedulingInfo;
        }

        public URL getUrl() {
            return url;
        }

        public long getUploadedAt() {
            return uploadedAt;
        }

        public String getVersion() {
            return version;
        }

        public SchedulingInfo getSchedulingInfo() {
            return schedulingInfo;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



