File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/org/scm4j/deployer/api Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
package org .scm4j .deployer .api ;
2
2
3
- import java .util .List ;
4
3
import java .util .Map ;
5
4
6
5
public interface IProductDeployer {
@@ -13,9 +12,9 @@ public interface IProductDeployer {
13
12
14
13
Map <String , ProductInfo > refreshProducts ();
15
14
16
- List <String > listProductVersions (String simpleName );
15
+ Map <String , Boolean > listProductVersions (String simpleName );
17
16
18
- List <String > refreshProductVersions (String simpleName );
17
+ Map <String , Boolean > refreshProductVersions (String simpleName );
19
18
20
19
Map <String , String > mapDeployedProducts ();
21
20
Original file line number Diff line number Diff line change 5
5
@ Data
6
6
public class ProductInfo {
7
7
private final String artifactId ;
8
+ private final String appliedVersionsUrl ;
8
9
private final boolean hidden ;
9
10
}
You can’t perform that action at this time.
0 commit comments