OpenGraphAction
이 클래스는 더 이상 최신 버전의 SDK에서 사용할 수 없습니다.
이 클래스의 최신 버전을 사용할 수 있습니다. 확인해보세요 최신 버전.

Provides a strongly-typed representation of an Open Graph Action. For more documentation of OG Actions, see: https://developers.facebook.com/docs/opengraph/actions/

Note that this interface is intended to be used with GraphObject.Factory or OpenGraphAction.Factory and not implemented directly.

구현:GraphObject
패키지:model
인스턴스 메서드
getId()

Gets the ID of the action.

public String getId()
Returns
The ID
setId(String)

Sets the ID of the action.

public void setId(String id)
매개변수설명
idThe ID
getType()

Gets the type of the action, which is a string in the form "mynamespace:mytype".

public String getType()
Returns
The type
setType(String)

Sets the type of the action, which is a string in the form "mynamespace:mytype".

public void setType(String type)
매개변수설명
typeThe type
getStartTime()

Gets the start time of the action.

public Date getStartTime()
Returns
The start time
setStartTime(Date)

Sets the start time of the action.

public void setStartTime(Date startTime)
매개변수설명
startTimeThe start time
getEndTime()

Gets the end time of the action.

public Date getEndTime()
Returns
The end time
setEndTime(Date)

Sets the end time of the action.

public void setEndTime(Date endTime)
매개변수설명
endTimeThe end time
getPublishTime()

Gets the time the action was published, if any.

public Date getPublishTime()
Returns
The publish time
setPublishTime(Date)

Sets the time the action was published.

public void setPublishTime(Date publishTime)
매개변수설명
publishTimeThe publish time
getCreatedTime()

Gets the time the action was created.

public Date getCreatedTime()
Returns
The creation time
setCreatedTime(Date)

Sets the time the action was created.

public void setCreatedTime(Date createdTime)
매개변수설명
createdTimeThe creation time
getExpiresTime()

Gets the time the action expires at.

public Date getExpiresTime()
Returns
The expiration time
setExpiresTime(Date)

Sets the time the action expires at.

public void setExpiresTime(Date expiresTime)
매개변수설명
expiresTimeThe expiration time
getRef()

Gets the unique string which will be passed to the OG Action owner's website when a user clicks through this action on Facebook.

public String getRef()
Returns
The ref string
setRef(String)

Sets the unique string which will be passed to the OG Action owner's website when a user clicks through this action on Facebook.

public void setRef(String ref)
매개변수설명
refThe ref string
getMessage()

Gets the message assoicated with the action.

public String getMessage()
Returns
The message
setMessage(String)

Sets the message associated with the action.

public void setMessage(String message)
매개변수설명
messageThe message
getPlace()

Gets the place where the action took place.

public GraphPlace getPlace()
Returns
The place
setPlace(GraphPlace)

Sets the place where the action took place.

public void setPlace(GraphPlace place)
매개변수설명
placeThe place
getTags()

Gets the list of profiles that were tagged in the action.

public GraphObjectList getTags()
Returns
The profiles that were tagged in the action
setTags(List)

Sets the list of profiles that were tagged in the action.

public void setTags(List tags)
매개변수설명
tagsThe profiles that were tagged in the action
getImage()

Gets the images that were associated with the action.

public List getImage()
Returns
The images
setImage(List)

Sets the images that were associated with the action.

public void setImage(List image)
매개변수설명
imageThe images
setImageUrls(List)

Sets the images associated with the Open Graph action by specifying their URLs. This is a helper that will create GraphObjects with the correct URLs and populate the property with those objects.

public void setImageUrls(List urls)
매개변수설명
urlsThe URLs
getFrom()

Gets the from-user associated with the action.

public GraphUser getFrom()
Returns
The user
setFrom(GraphUser)

Sets the from-user associated with the action.

public void setFrom(GraphUser from)
매개변수설명
fromThe from-user
getLikes()

Gets the 'likes' that have been performed on this action.

public JSONObject getLikes()
Returns
The likes
setLikes(JSONObject)

Sets the 'likes' that have been performed on this action.

public void setLikes(JSONObject likes)
매개변수설명
likesThe likes
getApplication()

Gets the application that created this action.

public GraphObject getApplication()
Returns
The application
setApplication(GraphObject)

Sets the application that created this action.

public void setApplication(GraphObject application)
매개변수설명
applicationThe application
getComments()

Gets the comments that have been made on this action.

public JSONObject getComments()
Returns
The comments
setComments(JSONObject)

Sets the comments that have been made on this action.

public void setComments(JSONObject comments)
매개변수설명
commentsThe comments
getData()

Gets the type-specific data for this action; for instance, any properties referencing Open Graph objects will appear under here.

public GraphObject getData()
Returns
A GraphObject representing the type-specific data
setData(GraphObject)

Sets the type-specific data for this action.

public void setData(GraphObject data)
매개변수설명
dataA GraphObject representing the type-specific data
getExplicitlyShared()

Gets whether the action has been explicitly shared by the user. See Explicit Sharing for more information.

public boolean getExplicitlyShared()
Returns
True if this action was explicitly shared
setExplicitlyShared(boolean)

Sets whether the action has been explicitly shared by the user. See Explicit Sharing for more information. You should only specify this property if explicit sharing has been enabled for an Open Graph action type.

public void setExplicitlyShared(boolean explicitlyShared)
매개변수설명
explicitlySharedTrue if this action was explicitly shared