Iterator<String> labels, String user) throws ServiceException, IOException {
IssuesEntry entry = new IssuesEntry();
entry.setTitle(new PlainTextConstruct(title));
entry.setContent(new HtmlTextConstruct(content));
entry.setStatus(new Status("New"));
Owner owner = new Owner();
owner.setUsername(new Username(user));
Person author = new Person();
author.setName(user);
entry.getAuthors().add(author);