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

Commonjava / indy-tracking-service / 17609781007

10 Sep 2025 09:42AM UTC coverage: 67.036% (+0.02%) from 67.018%
17609781007

Pull #67

github

web-flow
Merge 8b2655efb into fceaae58e
Pull Request #67: Update cleanupEmptyFolders to POST

8 of 9 new or added lines in 3 files covered. (88.89%)

1210 of 1805 relevant lines covered (67.04%)

1.34 hits per line

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

72.73
/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
{
25
    private String internalId;
26

27
    private Set<String> paths;
28

29
    private String filesystem;
30

31
    public Set<String> getPaths() {
32
        return paths;
×
33
    }
34

35
    public void setPaths(Set<String> paths) {
36
        this.paths = paths;
2✔
37
    }
2✔
38

39
    public String getFilesystem() {
40
        return filesystem;
×
41
    }
42

43
    public void setFilesystem(String filesystem) {
44
        this.filesystem = filesystem;
2✔
45
    }
2✔
46

47
    public String getInternalId()
48
    {
NEW
49
        return internalId;
×
50
    }
51

52
    public void setInternalId( String internalId )
53
    {
54
        this.internalId = internalId;
2✔
55
    }
2✔
56

57
    @Override
58
    public String toString()
59
    {
60
        return "StorageBatchDeleteRequest{" + "internalId='" + internalId + '\'' + ", paths=" + paths + ", filesystem='"
2✔
61
                        + filesystem + '\'' + '}';
62
    }
63
}
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