View Javadoc
1   package org.exoplatform.wiki.mow.api;
2   
3   import java.util.Date;
4   
5   public class PageVersion {
6     private String name;
7   
8     private String author;
9   
10    private Date createdDate;
11  
12    private Date updatedDate;
13  
14    private String content;
15  
16    private String comment;
17  
18    private String[] predecessors;
19  
20    private String[] successors;
21  
22    public String getName() {
23      return name;
24    }
25  
26    public void setName(String name) {
27      this.name = name;
28    }
29  
30    public String getAuthor() {
31      return author;
32    }
33  
34    public void setAuthor(String author) {
35      this.author = author;
36    }
37  
38    public Date getCreatedDate() {
39      return createdDate;
40    }
41  
42    public void setCreatedDate(Date createdDate) {
43      this.createdDate = createdDate;
44    }
45  
46    public Date getUpdatedDate() {
47      return updatedDate;
48    }
49  
50    public void setUpdatedDate(Date updatedDate) {
51      this.updatedDate = updatedDate;
52    }
53  
54    public String getContent() {
55      return content;
56    }
57  
58    public void setContent(String content) {
59      this.content = content;
60    }
61  
62    public String getComment() {
63      return comment;
64    }
65  
66    public void setComment(String comment) {
67      this.comment = comment;
68    }
69  
70    public String[] getPredecessors() {
71      return predecessors;
72    }
73  
74    public void setPredecessors(String[] predecessors) {
75      this.predecessors = predecessors;
76    }
77  
78    public String[] getSuccessors() {
79      return successors;
80    }
81  
82    public void setSuccessors(String[] successors) {
83      this.successors = successors;
84    }
85  }