-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from AdaptiveScale/release-1.9.1
Release 1.9.1
- Loading branch information
Showing
12 changed files
with
607 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
common/src/main/java/com/adaptivescale/rosetta/common/models/Interleave.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package com.adaptivescale.rosetta.common.models; | ||
|
||
import java.util.Objects; | ||
|
||
public class Interleave { | ||
|
||
private String tableName; | ||
|
||
private String parentName; | ||
|
||
private String onDeleteAction; | ||
|
||
public String getTableName() { | ||
return tableName; | ||
} | ||
|
||
public void setTableName(String tableName) { | ||
this.tableName = tableName; | ||
} | ||
|
||
public String getParentName() { | ||
return parentName; | ||
} | ||
|
||
public void setParentName(String parentName) { | ||
this.parentName = parentName; | ||
} | ||
|
||
public String getOnDeleteAction() { | ||
return onDeleteAction; | ||
} | ||
|
||
public void setOnDeleteAction(String onDeleteAction) { | ||
this.onDeleteAction = onDeleteAction; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) return true; | ||
if (o == null || getClass() != o.getClass()) return false; | ||
Interleave that = (Interleave) o; | ||
return Objects.equals(tableName, that.tableName) && Objects.equals(parentName, that.parentName) && Objects.equals(onDeleteAction, that.onDeleteAction); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(tableName, parentName, onDeleteAction); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.