Conversation
|
CLA Assistant Lite bot All contributors have signed the CLA ✍️ |
|
I have read the CLA Document and I hereby sign the CLA |
8782565 to
15dd576
Compare
|
recheckcla |
7bbf59a to
42a5671
Compare
|
recheckcla |
|
I have read the CLA Document and I hereby sign the CLA |
|
recheckcla |
42a5671 to
7bbf59a
Compare
|
|
||
| import java.util.List; | ||
|
|
||
| public interface FileList { |
There was a problem hiding this comment.
Do we really need this new interface (and its implementing class)?
I can see that it is used as the returned value for this new API -
FileList list = folder.list(deep, listFolders, timeStamps);
but the returned value of this API can also be -
List<ListItem>= folder.list(deep, listFolders, timeStamps);
There was a problem hiding this comment.
i think i need it for the deserialization because the return data has this structure:
String uri;
Date created;
ListItemImpl[] files;
services/src/main/groovy/org/jfrog/artifactory/client/impl/FolderHandleImpl.groovy
Outdated
Show resolved
Hide resolved
services/src/main/groovy/org/jfrog/artifactory/client/impl/FolderHandleImpl.groovy
Outdated
Show resolved
Hide resolved
services/src/main/groovy/org/jfrog/artifactory/client/impl/FolderHandleImpl.groovy
Outdated
Show resolved
Hide resolved
services/src/main/groovy/org/jfrog/artifactory/client/impl/RepositoryHandleImpl.groovy
Outdated
Show resolved
Hide resolved
b642e42 to
cd13ec2
Compare
cd13ec2 to
f56e539
Compare
|
|
||
| import java.util.List; | ||
|
|
||
| public interface FileList { |
There was a problem hiding this comment.
i think i need it for the deserialization because the return data has this structure:
String uri;
Date created;
ListItemImpl[] files;
i want to have the info of all files under a specific directory, the folder.getChildren not enough because i dont want to do large recursive calls. There is a rest api call for this:
https://www.jfrog.com/confluence/display/rtf/artifactory+rest+api#ArtifactoryRESTAPI-FileList