public class BlogCacheManager.Post extends Object
| Modifier and Type | Field and Description | 
|---|---|
protected Date | 
_date
The post date. 
 | 
protected String | 
_id
The post content id. 
 | 
protected String | 
_name
The post content name. 
 | 
protected String[] | 
_tags
The post tags. 
 | 
| Constructor and Description | 
|---|
Post()  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
equals(Object obj)  | 
Date | 
getDate()
Get the date. 
 | 
String | 
getId()
Get the id. 
 | 
String | 
getName()
Get the name. 
 | 
String[] | 
getTags()
Get the tags. 
 | 
int | 
hashCode()  | 
void | 
setDate(Date date)
Set the date. 
 | 
void | 
setId(String id)
Set the id. 
 | 
void | 
setName(String name)
Set the name. 
 | 
void | 
setTags(String[] tags)
Set the tags. 
 | 
public Post()