Interface EntryMetadata
-
public interface EntryMetadataEntryMetadatacontains all metadata for anODataEntry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>getAssociationUris(String navigationPropertyName)Gets the association URIs for a given navigation property.StringgetEtag()Gets the entity tag for this entry.StringgetId()Gets the ID of this entry.StringgetUri()Gets the URI of this entry.
-
-
-
Method Detail
-
getUri
String getUri()
Gets the URI of this entry.- Returns:
- the URI
-
getAssociationUris
List<String> getAssociationUris(String navigationPropertyName)
Gets the association URIs for a given navigation property.- Parameters:
navigationPropertyName- the name of the navigation property- Returns:
- the list of URIs for the given navigation property
-
getEtag
String getEtag()
Gets the entity tag for this entry.- Returns:
- the entity tag
-
getId
String getId()
Gets the ID of this entry.- Returns:
- the ID
-
-