public class

EmailListRecipientEntry

extends BaseEntry<E extends BaseEntry>
java.lang.Object
   ↳ com.google.gdata.data.AbstractExtension
     ↳ com.google.gdata.data.ExtensionPoint
       ↳ com.google.gdata.data.BaseEntry<E extends com.google.gdata.data.BaseEntry>
         ↳ com.google.gdata.data.appsforyourdomain.provisioning.EmailListRecipientEntry

Class Overview

Google Apps for Your Domain GData Entry which models a particular recipient on an email list. This is a simple Entry which contain only a single Who extension. This is temporary for code reviewers. Sample XML. <?xml version="1.0" encoding="UTF-8"?> <atom:entry xmlns:atom="http://www.w3.org/2005/Atom"> <atom:category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/apps/2006#emailList.recipient"/> <gd:who xmlns:gd="http://schemas.google.com/g/2005" email="SusanJones-1321@apps-provisioning-test.com"/> </atom:entry>

Summary

Constants
String EMAILLIST_RECIPIENT_KIND Kind term value for EmailListRecipient category labels.
Fields
public static final Category EMAILLIST_RECIPIENT_CATEGORY Kind category used to label feeds or entries that have EmailListRecipient extension data.
[Expand]
Inherited Fields
From class com.google.gdata.data.BaseEntry
From class com.google.gdata.data.ExtensionPoint
From class com.google.gdata.data.AbstractExtension
Public Constructors
EmailListRecipientEntry()
Constructs a new empty EmailListRecipientEntry with the appropriate kind category to indicate that it is an email list.
EmailListRecipientEntry(BaseEntry<?> sourceEntry)
Constructs a new EmailListRecipientEntry by doing a shallow copy of data from an existing BaseEntry intance.
Public Methods
void declareExtensions(ExtensionProfile extensionProfile)
Declares an Extension.
[Expand]
Inherited Methods
From class com.google.gdata.data.BaseEntry
From class com.google.gdata.data.ExtensionPoint
From class com.google.gdata.data.AbstractExtension
From class java.lang.Object
From interface com.google.gdata.data.Extension
From interface com.google.gdata.data.IAtom
From interface com.google.gdata.data.IEntry
From interface com.google.gdata.data.Kind.Adaptable
From interface com.google.gdata.data.Kind.Adaptor

Constants

public static final String EMAILLIST_RECIPIENT_KIND

Kind term value for EmailListRecipient category labels.

Constant Value: "http://schemas.google.com/apps/2006#emailList.recipient"

Fields

public static final Category EMAILLIST_RECIPIENT_CATEGORY

Kind category used to label feeds or entries that have EmailListRecipient extension data.

Public Constructors

public EmailListRecipientEntry ()

Constructs a new empty EmailListRecipientEntry with the appropriate kind category to indicate that it is an email list.

public EmailListRecipientEntry (BaseEntry<?> sourceEntry)

Constructs a new EmailListRecipientEntry by doing a shallow copy of data from an existing BaseEntry intance.

Parameters
sourceEntry

Public Methods

public void declareExtensions (ExtensionProfile extensionProfile)

Declares an Extension.

Parameters
extensionProfile The ExtensionProfile to initialize.