Renamed some methods, fixed SQL typo bugs in JdbcDatabase.

This commit is contained in:
akwizgran
2013-01-29 16:43:13 +00:00
parent 61a6931643
commit 7ecda94340
14 changed files with 113 additions and 121 deletions

View File

@@ -9,7 +9,8 @@ public class RetentionAck {
this.version = version;
}
public long getVersionNumber() {
/** Returns the version number of the acknowledged update. */
public long getVersion() {
return version;
}
}

View File

@@ -17,7 +17,7 @@ public class RetentionUpdate {
return retention;
}
public long getVersionNumber() {
public long getVersion() {
return version;
}
}

View File

@@ -10,7 +10,7 @@ public class SubscriptionAck {
}
/** Returns the version number of the acknowledged update. */
public long getVersionNumber() {
public long getVersion() {
return version;
}
}

View File

@@ -22,7 +22,7 @@ public class SubscriptionUpdate {
}
/** Returns the update's version number. */
public long getVersionNumber() {
public long getVersion() {
return version;
}
}

View File

@@ -17,7 +17,7 @@ public class TransportAck {
}
/** Returns the version number of the acknowledged update. */
public long getVersionNumber() {
public long getVersion() {
return version;
}
}

View File

@@ -29,7 +29,7 @@ public class TransportUpdate {
}
/** Returns the update's version number. */
public long getVersionNumber() {
public long getVersion() {
return version;
}
}