Uses of Class
org.kohsuke.jnt.ProcessingException

Packages that use ProcessingException
org.kohsuke.jnt The library that exposes programatic manipulation of java.net. 
org.kohsuke.jnt.ant   
org.kohsuke.jnt.tools   
 

Uses of ProcessingException in org.kohsuke.jnt
 

Methods in org.kohsuke.jnt that throw ProcessingException
 void JNProject.approve()
          Approves the project.
 void JNNewsItem.approve()
          Approves this announcement.
 void IssueEditor.commit(String comment)
          Commits the change.
static JavaNet JavaNet.connect()
          obtains the connection info from ~/.java.net and returns the connected JavaNet object.
static JavaNet JavaNet.connect(File accountFile)
          obtains the connection info from the given file and returns the connected JavaNet object.
static JavaNet JavaNet.connect(String userName, String password)
          Connects to java.net directly by using the given account info.
static JavaNet JavaNet.connect(String userName, String password, String proxyServer, int proxyPort)
          Connects to java.net through HTTP proxy by using the given account info.
 JNMailingList JNMailingLists.create(String listName, String description, String ownerAddress, String prefix, boolean hasTrailer, boolean isPrivate, ListType type, Collection subscribers, Collection moderators)
          Creates a new mailing list.
 JNFileFolder JNFileFolder.createFolder(String name, String description)
          Creates a new sub-folder in this folder.
 JNForum JNForums.createForum(String name, String description)
          Creats a new forum.
 void JNNewsItems.createNewsItem(Calendar date, String headline, String body, String imageUrl, String articleUrl)
          Submit a news item.
 void JNNewsItems.createNewsItem(String headline)
          Set the headline field of the news item.
 void JNMembership.declineRole(JNUser user, String roleName, String reason)
          Declines the specified role request.
 void JNMembership.declineRole(String userName, String roleName, String reason)
          Deprecated.  
 void JNFileFolder.delete()
          Removes this folder.
 void JNFile.delete()
          Removes this file.
 void JNNewsItem.delete()
          Delete this announcement.
 void JNForum.delete()
          Deletes this mailing list.
 void JNMailingList.delete()
          Deletes this mailing list.
 void JNFileFolder.deleteFile(String fileName)
          Deprecated. use getFiles().get(fileName).delete()
 void JNNewsItem.disapprove()
          Rejects this announcement.
 void JNProject.disapprove(String reason)
          Disapproves the project.
 boolean JNProject.exists()
           
 boolean JNFileFolder.existsFile(String fileName)
          Deprecated. use getFiles().containsKey(fileName)
 Map<Integer,JNIssue> JNIssueTracker.get(int... ids)
          Gets multiple issues at once.
 JNIssue JNIssueTracker.get(int id)
          Gets the issue of the specified id.
 JNMailingList JNMailingLists.get(String name)
          Returns the mailing list of the specified name.
 Map<Integer,JNIssue> JNIssueTracker.getAll()
          Gets all the issues in this issue tracker.
 String JNMailingList.getDescription()
          Gets the description of this list.
 JNFile JNFileFolder.getFile(String fileName)
          Gets a file in this folder.
 Map<String,JNFile> JNFileFolder.getFiles()
          Returns the files in this folder.
 JNFileFolder JNProject.getFolder(String folderPathName)
          Obtains the top folder in the file sharing section.
 JNForum JNForums.getForum(String name)
          Returns the forum of the specified name.
 List<JNForum> JNForums.getForums()
          Returns all the forums in this project as a List of JNForums.
 int JNUser.getId()
          Gets the user id, which is what the system uses to uniquely identify each user.
 List<JNMailingList> JNMailingLists.getLists()
          Returns all the mailing lists as a List of JNMailingList.
 Set<JNUser> JNMembership.getMembers()
          Gets all the members of this project as a Set of JNUsers.
 List<JNMailingList.MessagePerMonth> JNMailingList.getMessagesPerMonth()
          Returns a list of JNMailingList.MessagePerMonth.
 Set<JNProject> JNMyself.getMyProjects()
          Set of JNProject to which the current user belongs.
 JNMyself JavaNet.getMyself()
          Obtains a special JNUser object that represents the currently logged-in user.
 List<JNNewsItem> JNNewsItems.getNewsItems()
          Gets all announcements in this project as a List of JNNewsItems.
 JNProject JNProject.getOwnerCommunity()
          Gets the community project to which this project directly/indirectly belongs.
 String JNProject.getOwnerMessage()
          Gets the owner's message.
 String JNProject.getOwnerMessage2()
          Gets the owner's message.
 Set<JNUser> JNProject.getOwners()
          Returns a set of JNUsers that represent project owners.
 JNProject JNProject.getParent()
          Gets the parent project.
 List<JNNewsItem> JNNewsItems.getPendingApprovals()
           
 JNProject JavaNet.getProject(String projectName)
          Obtains a JNProject object from its name.
 Collection<JNProject> JNUser.getProjects()
          Gets the projects to which the user belongs.
 Collection<JNProject> JNMyself.getProjects()
          The same as JNMyself.getMyProjects().
 Map<Integer,JNIssue> JNIssueTracker.getRange(int start, int end)
          Gets multiple issues at once, by spcifying a range [start,end)
 JNRole JavaNet.getRole(String roleName)
          Obtains a JNRole object from a role name.
 Set<JNRole> JNMembership.getRoles()
          Gets all the roles used in this project as a Set of JNRoles.
 Set<JNRole> JNMembership.getRolesOf(JNUser user)
          Gets the JNRoles that a given user has in this project.
 JNFileFolder JNFileFolder.getSubFolder(String folderName)
          Returns a sub-folder.
 Map<String,JNFileFolder> JNFileFolder.getSubFolders()
          Returns the subfolders of this folder.
 Set<JNProject> JNProject.getSubProjects()
          Returns a set of JNProject objects that represent the sub-projects of this project.
 List<String> JNMailingList.getSubscribers(SubscriptionMode mode)
          Gets the list of subscriber e-mail addresses.
 String JNProject.getSummary()
          Gets the one-line summary of this project.
 int JNMailingList.getTotalMessages()
          Gets the total number of messages this list holds.
 Map<Integer,JNIssue> JNIssueTracker.getUpdatedIssues(Calendar start, Calendar end)
          Gets all the issues updated during the specified time span.
 Set<JNUser> JNMembership.getUserOf(JNRole role)
          Gets the JNUsers who has a specified role in this project.
 JNVCS JNProject.getVersionControl()
          Gets the version control system this project uses.
 void JNMembership.grantRole(JNUser user, String roleName)
          Grants the specified role request.
 void JNMembership.grantRole(String userName, String roleName)
          Deprecated.  
 boolean JNProject.isCommunity()
          Returns true if this project is a community project.
 JNFile JNFileFolder.linkUrl(String fileName, String description, FileStatus status, URL link)
          Creates a link to an URL.
 int JNMailingList.massSubscribe(Collection<String> addresses, SubscriptionMode mode, JNMailingList.ProgressCallback callback)
          Subscribes the specified e-mail addresses to this mailing list.
 int JNMailingList.massSubscribe(String[] addresses, SubscriptionMode mode, JNMailingList.ProgressCallback callback)
          Subscribes the specified e-mail addresses to this mailing list.
 int JNMailingList.massSubscribe(String address, SubscriptionMode mode)
          Subscribes the specified e-mail address to this mailing list.
 int JNMailingList.massUnsubscribe(Collection<String> addresses, SubscriptionMode mode, JNMailingList.ProgressCallback callback)
          Unsubscribes the specified e-mail addresses from this mailing list.
 int JNMailingList.massUnsubscribe(String[] addresses, SubscriptionMode mode, JNMailingList.ProgressCallback callback)
          Unsubscribes the specified e-mail addresses from this mailing list.
 void JNFile.moveTo(JNFileFolder newFolder)
          Move this file to another folder
 void JNMembership.revokeRole(JNUser user, String roleName)
          Revokes the specified role from the user.
 String[][] JavaNet.runAdHocQuery(String sql)
          Runs ad-hoc query against java.net database.
 String JNProject.setOwnerMessage(String msg)
          Sets the owner's message.
 void JNProject.setParent(JNProject newParent)
          Moves this project under the specified project.
 void JNForum.subscribe()
          Subscribes yourself.
 void JNMailingList.subscribe(SubscriptionMode mode)
          Subscribes yourself.
 void JNIssue.update(String comment)
          Update the issue by just posting a comment.
 JNFile JNFileFolder.uploadFile(String fileName, String description, FileStatus fileStatus, File fileToUpload)
          Uploads a file to the folder.
 JNFile JNFileFolder.uploadFile(String fileName, String description, FileStatus fileStatus, InputStream data, String contentType)
          Uploads a file from a source other than File.
 void JNFileFolder.uploadFile(String fileName, String description, String fileStatus, File fileToUpload)
          Deprecated. use JNFileFolder.uploadFile(String, String, FileStatus, File)
 

Uses of ProcessingException in org.kohsuke.jnt.ant
 

Methods in org.kohsuke.jnt.ant that throw ProcessingException
 void FileDeleteTask.run(JNProject cmd)
           
 void FileUploadTask.run(JNProject cmd)
           
 

Uses of ProcessingException in org.kohsuke.jnt.tools
 

Methods in org.kohsuke.jnt.tools that throw ProcessingException
 JavaNet ConnectionFactory.connect()
           
 void RoleRequest.decline(JavaNet javanet, String reason)
          Declines this request.
 void RoleRequest.grant(JavaNet javanet)
          Grants this request.
 void RoleRequestPolicy.Action.process(RoleRequest request)
           
 

Constructors in org.kohsuke.jnt.tools that throw ProcessingException
NewBugEmail(JavaNet connection, Reader mail)
           
 



Copyright © 2003-2008 Kohsuke Kawaguchi. All Rights Reserved.