Skip to content

Commit

Permalink
move stuff around
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Apr 13, 2011
1 parent 8ccc8f3 commit fb94a59
Show file tree
Hide file tree
Showing 32 changed files with 2,498 additions and 85 deletions.
1 change: 0 additions & 1 deletion future/symmetric-data/.classpath
Expand Up @@ -2,6 +2,5 @@
<classpath>
<classpathentry kind="src" path="src/main/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_19"/>
<classpathentry combineaccessrules="false" kind="src" path="/symmetric-ddl"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>

This file was deleted.

This file was deleted.

This file was deleted.

@@ -1,4 +1,4 @@
package org.jumpmind.symmetric.common;
package org.jumpmind.symmetric.data.common;

public enum BinaryEncoding {
NONE, BASE64, HEX;
Expand Down

This file was deleted.

@@ -1,24 +1,24 @@
package org.jumpmind.symmetric.model;
package org.jumpmind.symmetric.data.model;

public class Batch {

protected String sourceNodeId;
protected boolean initialLoad;
protected long batchId;
protected String channelId;

public String getSourceNodeId() {
return sourceNodeId;
}

public long getBatchId() {
return batchId;
}

public String getChannelId() {
return channelId;
}

public boolean isInitialLoad() {
return initialLoad;
}
Expand Down

0 comments on commit fb94a59

Please sign in to comment.