protected RelationshipKind getRelationshipKind() {
Map<String, Serializable> props = getProperties();
String relationshipKind = (String) props.get(RELATIONSHIP_KIND_PROPERTY);
if (relationshipKind == null) {
throw new ClientRuntimeException("Cannot find "
+ RELATIONSHIP_KIND_PROPERTY + " property.");
}
return RelationshipKind.fromString(relationshipKind);
}