Uses of Class
org.jickr.FlickrException

Uses of FlickrException in org.jickr
 

Methods in org.jickr that throw FlickrException
 void PhotoSet.add(Photo photo)
          Adds a photo to a PhotoSet.
 void Group.add(Photo photo)
          Add a photo to the Group's pool.
 java.lang.String PhotoSet.addComment(java.lang.String commentText)
          Adds a comment to this Photo, returns the new comment ID.
 java.lang.String Photo.addComment(java.lang.String commentText)
          Adds a comment to this Photo, returns the new comment ID.
 void Photo.addFavorite()
          Add this photo as favorite to the authenticated user.
 java.lang.String Photo.addNote(java.awt.Rectangle area, java.lang.String text)
          Add a Note to a Photo.
 void Photo.addTags(java.lang.String tags)
          Adds tags to this Photo.
static User Auth.authenticate()
          Authenticate a a session, after the user has gone to the URL from getAuthURL().
 boolean Photo.canAddMeta()
          Returns whether someone with the authenticated user's permissions can add metadata to the photo.
 boolean Photo.canComment()
          Returns whether someone with the authenticated user's permissions can comment on the photo.
static Photo Photo.create(java.io.File imageFile, java.lang.String title)
          Create a new Photo on Flickr.
static Photo Photo.create(java.io.File imageFile, java.lang.String title, java.lang.String desc, java.lang.String tags, boolean pub, boolean friend, boolean family)
          Create a new Photo on Flickr.
static PhotoSet PhotoSet.create(java.lang.String title, java.lang.String description, Photo primaryPhoto)
          Create a new PhotoSet.
 void PhotoSet.delete()
          Delete the current PhotoSet.
 void Photo.delete()
          Delete this photo from Flickr.
 void Note.delete()
          Delete this note.
 void Comment.delete()
          Delete this comment from Flickr.
static User User.findByEmail(java.lang.String emailAddr)
          Return a new User object that corresponds to the stated Email Address.
static PhotoSet PhotoSet.findByID(java.lang.String id)
          Get a new PhotoSet identified by the supplied ID.
static License License.findByID(java.lang.String id)
          Gets the License option that matches the supplied ID.
static Photo Photo.findByID(java.lang.String id, java.lang.String secret)
          Get a photo, provided you have the Photo's id, and secret key.
static java.util.List<Photo> Photo.findByTags(java.lang.String tags)
          Get a list of photos that are tagged with the desired keywords.
static java.util.List<Photo> Photo.findByTags(java.lang.String tags, boolean join)
          Get a list of Photos that are tagged with the desired keywords.
static User User.findByURL(java.lang.String userURL)
          Return a new User object that corresponds to the stated URL.
static Group Group.findByURL(java.net.URL groupURL)
          Get a new group by searching on the URL of that group.
static User User.findByUsername(java.lang.String username)
          Return a new User object that corresponds to the stated username.
static java.lang.String Auth.getAuthURL(Permission perm)
          Authenticates user to Flickr.
static long Auth.getBandwidthMax()
          Get the bandwidth available for the current authenticated user.
static long Auth.getBandwidthUsed()
          Get the bandwidth used for the current authenticated user.
 java.util.List<Comment> PhotoSet.getComments()
          Get a list of comments for this PhotoSet.
 java.util.List<Comment> Photo.getComments()
          Get a list of comments for this photo.
static java.util.List<User> User.getContacts()
          Get a list of users that are contacts for the authenticated user.
 java.util.Date Photo.getDateTaken()
          Get the date the photo was taken.
 java.lang.String Photo.getDateTakenGranularity()
          Get the granularity (i.e., the precision) of the date the photo was taken.
 java.util.Date Photo.getDateUpdated()
          Get the date the photo was last updated.
 java.util.Date Photo.getDateUploaded()
          Get the date the photo was uploaded to Flickr.
static User Auth.getDefaultAuthUser()
          Gets the default authenticated user.
 java.lang.String PhotoSet.getDescription()
          Get the Description of the PhotoSet.
 java.lang.String Photo.getDescription()
          Get the description of the photo.
 java.lang.String Group.getDescription()
          Get the Description of this Group.
 org.jdom.Document Photo.getEXIF()
          Get the EXIF data for this photo.
 java.util.List<Photo> User.getFavoritePhotos()
          Get a list of all favorite photos for this user.
static long Auth.getFilesizeMax()
          Get the max size of files allowed for the current authenticated user.
static java.util.List<Group> Group.getGroups()
          Get the list of groups that the authenticated user can add photos to.
 java.awt.image.BufferedImage Photo.getImage()
          Get a BufferedImage of this photo (default size).
 java.awt.image.BufferedImage Photo.getImage(Photo.Size size)
          Get a BufferedImage of this photo.
static java.util.List<Photo> Photo.getInteresting()
          Gets a list of Photos that Flickr users find interesting, for today.
static org.jickr.PhotoList Photo.getInteresting(java.util.Calendar cal)
          Gets a list of Photos that Flickr users find interesting, for today.
 License Photo.getLicense()
          Get the license of the photo.
static java.util.List<License> License.getLicenses()
          Get a list of license options available.
 java.lang.String User.getLocation()
          Get the location listed for this user in Flickr.
 java.lang.String Group.getName()
          Get the Title of this Group.
 java.util.List<Note> Photo.getNotes()
          Get a list of notes for this Photo.
 int Photo.getNumComments()
          Get the number of comments attached to this photo in Flickr.
 int Group.getNumMembers()
          Get the number of Members who belong to this group.
 int PhotoSet.getNumPhotos()
          Get the number of Photos in the PhotoSet.
static Permission Auth.getPermLevel(User user)
          Gets the authentication level for a given user.
 int User.getPhotoCount()
          Gets the number of photos the user owns.
 java.net.URL Photo.getPhotoPage()
          Get the Flickr URL of the page where you can find this photo.
 org.jickr.PhotoList PhotoSet.getPhotos()
          Retrieve the list of photos associated with this PhotoSet.
 java.util.List<Photo> Group.getPhotos()
          Get the photos available in this Group's pool.
 java.util.List<PhotoSet> User.getPhotoSets()
          Get a list of the PhotoSets for this user.
 java.net.URL User.getPhotosURL()
          Gets the URL for photos for this user.
 java.util.Map<java.lang.String,java.lang.Integer> User.getPopularTags(int count)
          Get a list of the popular tags associated with this User's Photos, and how many times they are used.
 Photo PhotoSet.getPrimaryPhoto()
          Get the primary Photo associated with this PhotoSet.
 java.net.URL User.getProfileURL()
          Gets the URL of the user profile.
 java.util.List<Photo> User.getPublicContactPhotos()
          Get a list of all public photos for this user's contacts.
 java.util.List<Photo> User.getPublicContactPhotos(boolean justFriends, int count)
          Get a list of all public photos for this user's contacts.
 java.util.List<User> User.getPublicContacts()
          Get a list of users who are listed as contacts for this User.
 java.util.List<Photo> User.getPublicFavoritePhotos()
          Get a list of all public favorite photos for this user.
 java.util.List<Group> Photo.getPublicGroups()
          Get a list of all public Groups this Photo belongs to.
 java.util.List<Photo> User.getPublicPhotos()
          Get a list of all public photos for this user.
 java.util.List<PhotoSet> Photo.getPublicSets()
          Get a list of all public PhotoSets this Photo belongs to.
 java.lang.String User.getRealName()
          Get the real name.
static java.util.List<Photo> Photo.getRecentPhotos()
          Gets a list of the most recent photos on Flickr.
static java.util.List<java.lang.String> Tag.getRelated(java.lang.String search)
          Get a list of all tags related to the tag supplied, as determined by Flickr.
 java.lang.String Photo.getSecret()
          Get the secret key of the photo.
 java.util.Map<Photo.Size,Photo.PhotoSize> Photo.getSizes()
          Get a Map of all valid PhotoSize values for this Photo.
 java.net.URL Photo.getStaticURL()
          Get the static Flickr URL where you can find this photo.
 java.util.List<java.lang.String> User.getTags()
          Get a list of all the tags associated with this User's Photos.
 java.util.List<Tag> Photo.getTags()
          Get a list of tags for this Photo.
 java.lang.String PhotoSet.getTitle()
          Get the Title of the PhotoSet.
 java.lang.String Photo.getTitle()
          Get the title of the photo.
 java.net.URL Group.getURL()
          Get the URL associated with this group.
 java.lang.String User.getUserName()
          Get the User Name
static boolean Auth.isAuthenticated(User authUser, Permission perm)
          Returns whether we're authenticated to at least this level.
 boolean Photo.isFamily()
          Returns whether the photo is visible to people marked as family of the authenticated user.
 boolean Photo.isFriend()
          Returns whether the photo is visible to people marked as friends of the authenticated user.
 boolean User.isPro()
          Gets whether the User is registered with a Pro account.
 boolean Photo.isPublic()
          Return whether the photo is publicly visible.
static void PhotoSet.orderSets(java.util.List<PhotoSet> setlist)
          Order the PhotoSets for display on Flickr.
 void Tag.remove()
          Deletes the Tag.
 void PhotoSet.remove(Photo photo)
          Removes a photo to a PhotoSet.
 void Group.remove(Photo photo)
          Remove a photo to the Group's pool.
 void Photo.removeFavorite()
          Remove this photo from the authenticated user's list of favorites.
 void Photo.replace(java.io.File imageFile)
          Replaces the Photo on Flickr with the Image provided.
 void Photo.rotate(int amount)
          Rotate the Photo on Flickr.
static java.util.List<Photo> Photo.search(PhotoSearch search)
          Get a list of Photos associated with the PhotoSearch term.
static java.util.List<Group> Group.search(java.lang.String searchText)
          Full text search for groups which contain searchText.
 void Photo.setDateTaken(java.util.Date dateTaken)
          Update the date Flickr lists as the date taken for the Photo.
 void Photo.setDateTakenGranularity(java.lang.String granularity)
          Update the date Flickr lists as the date taken for the Photo.
 void Photo.setDateUploaded(java.util.Date dateUploaded)
          Update the date Flickr lists as the date the Photo was uploaded.
static void Auth.setDefaultAuthUser(User user)
          Sets the default authenticated user, for use in later executions of the program.
 void Photo.setLicense(License license)
          Sets the license restrictions of this photo.
 void Photo.setPerms(boolean pub, boolean friends, boolean family, Photo.Allowed comment, Photo.Allowed addmeta)
          Set permissions on a Photo.
 void PhotoSet.setPhotos(Photo primaryPhoto, java.util.List<Photo> photolist)
          Sets up all the photos in a PhotoSet.
 void Photo.setTags(java.lang.String tags)
          Replace all tags on the Photo with the specified tags.
 void Note.update(java.awt.Rectangle area, java.lang.String text)
          Modify the content and area of a Note.
 void Comment.updateText(java.lang.String commentText)
          Change the text of this comment to the supplied text.
 void PhotoSet.updateTitleDesc(java.lang.String titleText, java.lang.String descText)
          Update the Title and Description of the PhotoSet.
 void Photo.updateTitleDesc(java.lang.String title, java.lang.String desc)
          Change the title text and description text associated with a Photo.