예제 #1
0
        /// <summary>
        /// Constructs a new EmailListEntry instance with the appropriate category
        /// to indicate that it is a email list.
        /// </summary>
        public EmailListEntry()
            : base()
        {
            Categories.Add(EMAILLIST_CATEGORY);

            GAppsExtensions.AddProvisioningExtensions(this);
        }
예제 #2
0
        /// <summary>
        /// Constructs a new NicknameEntry instance with the appropriate category
        /// to indicate that it is a nickname.
        /// </summary>
        public NicknameEntry()
            : base()
        {
            Categories.Add(NICKNAME_CATEGORY);

            GAppsExtensions.AddProvisioningExtensions(this);
        }
예제 #3
0
        /// <summary>
        /// Constructs a new UserEntry instance with the appropriate category
        /// to indicate that it is a user account.
        /// </summary>
        public UserEntry()
            : base()
        {
            Categories.Add(USER_ACCOUNT_CATEGORY);

            GAppsExtensions.AddProvisioningExtensions(this);
        }
예제 #4
0
        /// <summary>
        /// Constructs a new EmailListEntry instance with the specified list name.
        /// </summary>
        /// <param name="emailListName">the name of the email list</param>
        public EmailListEntry(String emailListName)
            : base()
        {
            Categories.Add(EMAILLIST_CATEGORY);

            GAppsExtensions.AddProvisioningExtensions(this);

            EmailList = new EmailListElement(emailListName);
        }
 /// <summary>
 /// Constructs a new NicknameFeed.
 /// </summary>
 /// <param name="uriBase">the URI of the feed</param>
 /// <param name="iService">the service with which this
 /// feed will be associated</param>
 public NicknameFeed(Uri uriBase, IService iService)
     : base(uriBase, iService)
 {
     GAppsExtensions.AddProvisioningExtensions(this);
 }
 /// <summary>
 /// Constructs a new EmailListFeed.
 /// </summary>
 /// <param name="uriBase">the feed URI</param>
 /// <param name="iService">the Service object with which
 /// this feed is to be associated</param>
 public EmailListFeed(Uri uriBase, IService iService)
     : base(uriBase, iService)
 {
     GAppsExtensions.AddProvisioningExtensions(this);
 }