Skip to content

Commit

Permalink
Fixes to feature support. Removed ID types that are not applicable.
Browse files Browse the repository at this point in the history
  • Loading branch information
BrynCooke committed May 7, 2015
1 parent 758a54a commit 0805009
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,19 @@ private static class TitanVertexPropertyFeatures extends TitanDataTypeFeatures i
public boolean supportsUserSuppliedIds() {
return false;
}

@Override
public boolean supportsNumericIds() { return false; }

@Override
public boolean supportsAnyIds() {
return false;
}

@Override
public boolean supportsUuidIds() {
return false;
}
}

private static class TitanEdgePropertyFeatures extends TitanDataTypeFeatures implements EdgePropertyFeatures {
Expand All @@ -136,6 +149,16 @@ public VertexPropertyFeatures properties() {
public boolean supportsUserSuppliedIds() {
return false;
}

@Override
public boolean supportsAnyIds() {
return false;
}

@Override
public boolean supportsUuidIds() {
return false;
}
}

private static class TitanEdgeFeatures implements EdgeFeatures {
Expand All @@ -151,6 +174,16 @@ public boolean supportsUserSuppliedIds() {

@Override
public boolean supportsNumericIds() { return false; }

@Override
public boolean supportsAnyIds() {
return false;
}

@Override
public boolean supportsUuidIds() {
return false;
}
}

}

0 comments on commit 0805009

Please sign in to comment.