All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dv8tion.jda.api.managers.AccountManager Maven / Gradle / Ivy

Go to download

Java wrapper for the popular chat & VOIP service: Discord https://discord.com

There is a newer version: 5.1.0
Show newest version
/*
 * Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and the JDA contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package net.dv8tion.jda.api.managers;

import net.dv8tion.jda.annotations.ForRemoval;
import net.dv8tion.jda.api.entities.Icon;
import net.dv8tion.jda.api.entities.SelfUser;

import javax.annotation.CheckReturnValue;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

/**
 * Manager providing functionality to update one or more fields for the logged in account.
 *
 * 

Example *

{@code
 * manager.setAvatar(null).queue();
 * manager.reset(AccountManager.AVATAR)
 *        .setAvatar(icon)
 *        .queue();
 * }
* * @see net.dv8tion.jda.api.JDA#getSelfUser() JDA.getSelfUser() * @see net.dv8tion.jda.api.entities.SelfUser#getManager() */ public interface AccountManager extends Manager { /** * Used to reset the name field * * @deprecated Bot usernames are set through the application name now. */ @Deprecated @ForRemoval long NAME = 1; /** Used to reset the avatar field */ long AVATAR = 1 << 1; /** Used to reset the banner field */ long BANNER = 1 << 2; /** * The {@link net.dv8tion.jda.api.entities.SelfUser SelfUser} that will be * modified by this AccountManager. *
This represents the currently logged in account. * * @return The corresponding SelfUser */ @Nonnull SelfUser getSelfUser(); /** * Resets the fields specified by the provided bit-flag pattern. * You can specify a combination by using a bitwise OR concat of the flag constants. *
Example: {@code manager.reset(AccountManager.NAME | AccountManager.AVATAR);} * *

Flag Constants: *

    *
  • {@link #NAME}
  • *
  • {@link #AVATAR}
  • *
* * @param fields * Integer value containing the flags to reset. * * @return AccountManager for chaining convenience */ @Nonnull @Override @CheckReturnValue AccountManager reset(long fields); /** * Resets the fields specified by the provided bit-flag patterns. *
Example: {@code manager.reset(AccountManager.NAME, AccountManager.AVATAR);} * *

Flag Constants: *

    *
  • {@link #NAME}
  • *
  • {@link #AVATAR}
  • *
* * @param fields * Integer values containing the flags to reset. * * @return AccountManager for chaining convenience */ @Nonnull @Override @CheckReturnValue AccountManager reset(long... fields); /** * Sets the username for the currently logged in account * * @param name * The new username * * @throws IllegalArgumentException * If the provided name is: *
    *
  • Equal to {@code null}
  • *
  • Less than {@code 2} or more than {@code 32} characters in length
  • *
* * @return AccountManager for chaining convenience * * @deprecated Bot usernames are set through the application name now. */ @Nonnull @CheckReturnValue @Deprecated @ForRemoval AccountManager setName(@Nonnull String name); /** * Sets the avatar for the currently logged in account * * @param avatar * An {@link net.dv8tion.jda.api.entities.Icon Icon} instance representing * the new Avatar for the current account, {@code null} to reset the avatar to the default avatar. * * @return AccountManager for chaining convenience */ @Nonnull @CheckReturnValue AccountManager setAvatar(@Nullable Icon avatar); /** * Sets the banner for the currently logged in account * * @param banner * An {@link net.dv8tion.jda.api.entities.Icon Icon} instance representing * the new banner for the current account, {@code null} to reset the banner to the default banner. * * @return AccountManager for chaining convenience */ @Nonnull @CheckReturnValue AccountManager setBanner(@Nullable Icon banner); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy