use of org.apache.atlas.model.instance.AtlasEntity.AtlasEntityExtInfo in project incubator-atlas by apache.
the class EntityGraphRetriever method toAtlasEntityWithExtInfo.
public AtlasEntityWithExtInfo toAtlasEntityWithExtInfo(AtlasVertex entityVertex) throws AtlasBaseException {
AtlasEntityExtInfo entityExtInfo = new AtlasEntityExtInfo();
AtlasEntity entity = mapVertexToAtlasEntity(entityVertex, entityExtInfo);
AtlasEntityWithExtInfo ret = new AtlasEntityWithExtInfo(entity, entityExtInfo);
ret.compact();
return ret;
}
Aggregations