blob: c244ad4f4cd31d3ba9361830579e048af5cd5e8f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.usergrid.persistence.graph.impl;
import org.apache.usergrid.persistence.graph.Edge;
import org.apache.usergrid.persistence.graph.MarkedEdge;
import org.apache.usergrid.persistence.model.entity.Id;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.apache.usergrid.persistence.model.entity.SimpleId;
/**
* Simple bean to represent our edge
*
* @author tnine
*/
public class SimpleMarkedEdge extends SimpleEdge implements MarkedEdge {
private boolean isDeleted;
private boolean isSourceNodeDeleted;
private boolean isTargetNodeDeleted;
/**
* Unused but required for Jackson
*/
public SimpleMarkedEdge() {
}
public SimpleMarkedEdge( final Id sourceNode, final String type, final Id targetNode, final long timestamp,
final boolean isDeleted ) {
this( sourceNode, type, targetNode, timestamp, isDeleted, false, false );
}
public SimpleMarkedEdge( final Id sourceNode, final String type, final Id targetNode, final long timestamp,
final boolean isDeleted, final boolean isSourceNodeDeleted,
final boolean isTargetNodeDeleted ) {
super( sourceNode, type, targetNode, timestamp );
this.isDeleted = isDeleted;
this.isSourceNodeDeleted = isSourceNodeDeleted;
this.isTargetNodeDeleted = isTargetNodeDeleted;
}
public SimpleMarkedEdge( final Edge edge, final boolean isDeleted, final boolean isSourceNodeDeleted, final boolean isTargetNodeDeleted ) {
this(edge.getSourceNode(), edge.getType(), edge.getTargetNode(), edge.getTimestamp(),
isDeleted, isSourceNodeDeleted, isTargetNodeDeleted);
}
public SimpleMarkedEdge( final MarkedEdge another, final boolean includeEmptyVersion ) {
this(
new SimpleId(another.getSourceNode(), includeEmptyVersion),
another.getType(),
new SimpleId(another.getTargetNode(), includeEmptyVersion),
another.getTimestamp(),
another.isDeleted(),
another.isSourceNodeDelete(),
another.isTargetNodeDeleted()
);
}
@Override
@JsonIgnore
public boolean isDeleted() {
return isDeleted;
}
@Override
@JsonIgnore
public boolean isSourceNodeDelete() {
return isSourceNodeDeleted;
}
@Override
@JsonIgnore
public boolean isTargetNodeDeleted() {
return isTargetNodeDeleted;
}
@Override
public boolean equals( final Object o ) {
if ( this == o ) {
return true;
}
if ( !( o instanceof SimpleMarkedEdge ) ) {
return false;
}
if ( !super.equals( o ) ) {
return false;
}
final SimpleMarkedEdge that = ( SimpleMarkedEdge ) o;
if ( isDeleted != that.isDeleted ) {
return false;
}
return true;
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + ( isDeleted ? 1 : 0 );
result = 31 * result + ( isSourceNodeDeleted ? 1 : 0 );
result = 31 * result + ( isTargetNodeDeleted ? 1 : 0 );
return result;
}
@Override
public String toString() {
return "SimpleMarkedEdge{" +
"deleted=" + isDeleted +
", isSourceNodeDeleted=" + isSourceNodeDeleted +
", isTargetNodeDeleted=" + isTargetNodeDeleted +
"} " + super.toString();
}
}