public interface

GphotoData

implements Extensible
com.google.gdata.data.photos.GphotoData
Known Indirect Subclasses

Class Overview

Data interface for all of the photos data items. This is the base interface for the methods that all photos items should support. This interface contains the setters and getters for the system id of an element, which is the permanent id on the server.

Summary

Public Methods
abstract String getGphotoId()
Gets the gphoto:id of the data object.
abstract void setGphotoId(String id)
Sets the id of this feed or entry.
abstract void setGphotoId(Long id)
Sets the id of this feed or entry.
[Expand]
Inherited Methods
From interface com.google.gdata.data.photos.Extensible

Public Methods

public abstract String getGphotoId ()

Gets the gphoto:id of the data object. The gphoto:id is the photos-specific system id of the object, provided by the server at object creation time.

Returns
  • the Gphoto id.

public abstract void setGphotoId (String id)

Sets the id of this feed or entry. This field is normally read-only, but can be used on the client to perform a copy operation when creating a new object based on an existing object.

Parameters
id The string version of the id of this feed or entry.

public abstract void setGphotoId (Long id)

Sets the id of this feed or entry. This field is normally read-only, but can be used on the client to perform a copy operation when creating a new object based on an existing object.

Parameters
id The long version of the id of this feed or entry.