• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Commonjava / indy-tracking-service / 16665517501

01 Aug 2025 03:28AM UTC coverage: 67.018% (+0.3%) from 66.761%
16665517501

push

github

web-flow
Add action after batch delete to clean up empty parent folders (#66)

27 of 33 new or added lines in 3 files covered. (81.82%)

1207 of 1801 relevant lines covered (67.02%)

1.34 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

75.0
/src/main/java/org/commonjava/indy/service/tracking/client/storage/StorageBatchDeleteRequest.java
1
/**
2
 * Copyright (C) 2022-2023 Red Hat, Inc. (https://github.com/Commonjava/indy-tracking-service)
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *         http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
package org.commonjava.indy.service.tracking.client.storage;
17

18
import java.util.Set;
19

20
/**
21
 * Delete multiple paths in one filesystem.
22
 */
23
public class StorageBatchDeleteRequest {
2✔
24
    private Set<String> paths;
25

26
    private String filesystem;
27

28
    public Set<String> getPaths() {
NEW
29
        return paths;
×
30
    }
31

32
    public void setPaths(Set<String> paths) {
33
        this.paths = paths;
2✔
34
    }
2✔
35

36
    public String getFilesystem() {
NEW
37
        return filesystem;
×
38
    }
39

40
    public void setFilesystem(String filesystem) {
41
        this.filesystem = filesystem;
2✔
42
    }
2✔
43

44
    @Override
45
    public String toString() {
46
        return "BatchDeleteRequest{" +
2✔
47
                "paths=" + paths +
48
                ", filesystem='" + filesystem + '\'' +
49
                '}';
50
    }
51
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc