public class Album extends Object implements Serializable
| Constructor and Description |
|---|
Album() |
| Modifier and Type | Method and Description |
|---|---|
String |
getCoverPhoto()
Retrieves the URL of album cover photo
|
String |
getId()
Retrieves the album id
|
String |
getLink()
Retrieves the album view link
|
String |
getName()
Retrieves the album name
|
List<Photo> |
getPhotos()
Retrieves the list of albmun photos
|
int |
getPhotosCount()
Retrieves the album photos count
|
void |
setCoverPhoto(String coverPhoto)
Updates the album cover photo URL string
|
void |
setId(String id)
Updates the album id
|
void |
setLink(String link)
Updates the album view link
|
void |
setName(String name)
Updates the album nane
|
void |
setPhotos(List<Photo> photos)
Updates the list of album photos
|
void |
setPhotosCount(int photosCount)
Updates the album photo count
|
String |
toString()
Retrieves the Album as a string
|
public String getId()
public void setId(String id)
id - album idpublic String getName()
public void setName(String name)
name - album namepublic String getLink()
public void setLink(String link)
link - album linkpublic String getCoverPhoto()
public void setCoverPhoto(String coverPhoto)
coverPhoto - album cover photo URL stringpublic int getPhotosCount()
public void setPhotosCount(int photosCount)
photosCount - album photos countpublic void setPhotos(List<Photo> photos)
photos - Copyright © 2018. All Rights Reserved.