View Javadoc

1   package org.riverock.dbrevision.manager;
2   
3   /**
4    * User: SergeMaslyukov
5    * Date: 29.07.2007
6    * Time: 13:11:08
7    */
8   public class RevisionBean {
9       private String moduleName;
10  
11      private String currentVerson;
12  
13      private String lastPatch;
14  
15      public String getModuleName() {
16          return moduleName;
17      }
18  
19      public void setModuleName(String moduleName) {
20          this.moduleName = moduleName;
21      }
22  
23      public String getCurrentVerson() {
24          return currentVerson;
25      }
26  
27      public void setCurrentVerson(String currentVerson) {
28          this.currentVerson = currentVerson;
29      }
30  
31      public String getLastPatch() {
32          return lastPatch;
33      }
34  
35      public void setLastPatch(String lastPatch) {
36          this.lastPatch = lastPatch;
37      }
38  }