Project

General

Profile

« Previous | Next » 

Revision 3230

Added by Jing Tao about 17 years ago

Somehow the change went to the head rather than branch. So i rollback the change in head.

View differences:

DocumentImplWrapper.java
66 66
  }//Constructor
67 67

  
68 68
  public String write(DBConnection conn,Reader xml,String pub,Reader dtd,
69
                      String action, String docid, String user, String[] groups, String ipAddress)
69
                      String action, String docid, String user, String[] groups)
70 70
                      throws Exception
71 71
  {
72 72
    return DocumentImpl.write(conn, xml, pub, dtd, action, docid, user, 
73
                              groups, ruleBase, needValidation, ipAddress);
73
                              groups, ruleBase, needValidation);
74 74
  }
75 75
  
76 76
  public String writeReplication(DBConnection conn, Reader xml, 
......
78 78
                                        String accnum, String user,
79 79
                                        String[] groups,String homeServer, 
80 80
                                        String notifyServer, String createDate,
81
                                        String updateDate, String ipAddress)
81
                                        String updateDate)
82 82
                                        throws Exception
83 83
  {
84 84
    //we don't need to check validation in replciation
......
89 89
                                        accnum, user, groups, homeServer, 
90 90
                                        notifyServer, ruleBase, false, 
91 91
                                        DocumentImpl.DOCUMENTTABLE, false, 
92
                                        createDate, updateDate, ipAddress);
92
                                        createDate, updateDate);
93 93
                                        // last false means is not timed replication
94 94
                         
95 95
  }
......
116 116
          String accnum, String user,
117 117
          String[] groups,String homeServer, 
118 118
          String notifyServer, String tableName, 
119
          boolean timedReplication, String createDate, String updateDate, String ipAddress)
119
          boolean timedReplication, String createDate, String updateDate)
120 120
          throws Exception
121 121
  {
122 122
   //we don't need to check validation in replciation
......
124 124
   return DocumentImpl.writeReplication(conn, xml, pub, dtd, action, 
125 125
          accnum, user, groups, homeServer, 
126 126
          notifyServer, ruleBase, false, tableName, 
127
          timedReplication, createDate, updateDate, ipAddress);
127
          timedReplication, createDate, updateDate);
128 128
  }
129 129
}//DocumentImple

Also available in: Unified diff