com.buschmais.xo.neo4j.remote.impl.model.state.RelationshipState Maven / Gradle / Ivy
The newest version!
package com.buschmais.xo.neo4j.remote.impl.model.state;
import java.util.Map;
public class RelationshipState extends AbstractPropertyContainerState {
public RelationshipState() {
super(null);
}
public RelationshipState(Map readCache) {
super(readCache);
}
}