mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-09 17:03:23 +01:00
remove unused exception and class
This commit is contained in:
parent
bf8345908b
commit
db0595ac7e
@ -1,20 +0,0 @@
|
|||||||
package com.wisemapping.exceptions;
|
|
||||||
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
|
|
||||||
public class LabelMindmapRelationshipNotFoundException extends ClientException {
|
|
||||||
|
|
||||||
private static final String MSG_KEY = "LABEL_MINDMAP_RELATION_NOT_BE_FOUND";
|
|
||||||
|
|
||||||
public LabelMindmapRelationshipNotFoundException(@NotNull String msg)
|
|
||||||
{
|
|
||||||
super(msg,Severity.WARNING);
|
|
||||||
}
|
|
||||||
|
|
||||||
@NotNull
|
|
||||||
@Override
|
|
||||||
protected String getMsgBundleKey() {
|
|
||||||
return MSG_KEY;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,50 +0,0 @@
|
|||||||
package com.wisemapping.model;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
public class LabelMindmap implements Serializable{
|
|
||||||
|
|
||||||
private int mindmapId;
|
|
||||||
private int labelId;
|
|
||||||
|
|
||||||
public LabelMindmap(int labelId, int mindmapId) {
|
|
||||||
this.mindmapId = mindmapId;
|
|
||||||
this.labelId = labelId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public LabelMindmap() {}
|
|
||||||
|
|
||||||
public int getMindmapId() {
|
|
||||||
return mindmapId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMindmapId(int mindmapId) {
|
|
||||||
this.mindmapId = mindmapId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getLabelId() {
|
|
||||||
return labelId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLabelId(int labelId) {
|
|
||||||
this.labelId = labelId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object o) {
|
|
||||||
if (this == o) return true;
|
|
||||||
if (!(o instanceof LabelMindmap)) return false;
|
|
||||||
|
|
||||||
LabelMindmap that = (LabelMindmap) o;
|
|
||||||
|
|
||||||
return labelId == that.labelId && mindmapId == that.mindmapId;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
|
||||||
int result = mindmapId;
|
|
||||||
result = 31 * result + labelId;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user