getting detail information about attachments(Attachments, Shared Attachments, Text Attachments)
I know that getting detail information from a issue(Item) is
in CLI
$ im view issue 2
in Java API
Command cmd = new Command(Command.IM, "viewissue");
cmd.addSelection("2");
In result, I get the fields of the issue(item) that I selected.
Shared Attachments: shared.txt Text Attachments: text.txt Attachments: attach.txt
Not just names of the attachments, I want to know the detailed information of for each attachments (text.txt, attach.txt, share.txt...) such as created by and created time.
I know that the detailed information of each attachments is shown in the GUI client when view detail of the item.
How can I retrieve those information by CLI and Java API?

