| java.lang.Object | ||
| ↳ | com.google.gdata.data.AbstractExtension | |
| ↳ | com.google.gdata.data.youtube.YtPublicationState | |
Object representation of app:control/yt:state, which
describes the publication state of an entry.
| Nested Classes | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| YtPublicationState.State | Current state. | ||||||||||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| description | |||||||||||
| helpUrl | |||||||||||
| reasonCode | |||||||||||
| state | |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.data.AbstractExtension
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns, in a human-readable form, the reason why
the entry was rejected or why processing the entry failed.
| |||||||||||
Returns a HTTP url which describes the failure in more
details and/or provides a way of solving the problem.
| |||||||||||
Gets a code describing the reason why the entry was
rejected or why processing the entry failed.
| |||||||||||
Gets the publication state enum value.
| |||||||||||
Sets a human-readable error message.
| |||||||||||
Sets a url to which users can learn more about the current
issue.
| |||||||||||
Sets the code describing the reason why the
entry was rejected or why processing the entry failed.
| |||||||||||
Sets the publication state enum value.
| |||||||||||
| Protected Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Consumes attributes from the attribute helper.
| |||||||||||
Puts attributes into the attribute generator.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.gdata.data.AbstractExtension
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.google.gdata.data.Extension
| |||||||||||
| state | |
|---|---|
| reasonCode | |
| helpUrl | |
| description |
Returns, in a human-readable form, the reason why
the entry was rejected or why processing the entry failed.
This error message is only meant to help debugging and
should not be parsed automatically. The exact message
will change with time. Please use getReasonCode()
for that.
null
Returns a HTTP url which describes the failure in more details and/or provides a way of solving the problem.
null
Gets a code describing the reason why the entry was rejected or why processing the entry failed.
null
Gets the publication state enum value.
Sets a human-readable error message.
| description | Or null
|
|---|
Sets a url to which users can learn more about the current issue.
| url | An HTTP url or null
|
|---|
Sets the code describing the reason why the entry was rejected or why processing the entry failed.
| code | A code or null
|
|---|
Sets the publication state enum value.
| state | Publication state |
|---|
Consumes attributes from the attribute helper. May also use
consumeContent(boolean) to consume the element's text
content. Called from getHandler(ExtensionProfile, String, String, Attributes). Default implementation does
nothing, though generally this is discouraged unless there really are no
attributes.
| helper | Attribute helper |
|---|
| ParseException |
|---|
Puts attributes into the attribute generator. Called from
generate(XmlWriter, ExtensionProfile). Default implementation
does nothing, though generally this is discouraged unless there really are
no attributes.
| generator | Attribute generator |
|---|