net.dv8tion.jda.internal.entities.EntitlementImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JDA Show documentation
Show all versions of JDA Show documentation
Java wrapper for the popular chat & VOIP service: Discord https://discord.com
The 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.internal.entities;
import net.dv8tion.jda.api.JDA;
import net.dv8tion.jda.api.entities.Entitlement;
import net.dv8tion.jda.api.requests.RestAction;
import net.dv8tion.jda.api.requests.Route;
import net.dv8tion.jda.internal.requests.CompletedRestAction;
import net.dv8tion.jda.internal.requests.RestActionImpl;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.time.OffsetDateTime;
public class EntitlementImpl implements Entitlement
{
private final JDA api;
private long id;
private long skuId;
private long applicationId;
private long userId;
private long guildId;
private EntitlementType type;
private boolean deleted;
private OffsetDateTime startsAt;
private OffsetDateTime endsAt;
private boolean consumed;
public EntitlementImpl(JDA api, long id, long skuId, long applicationId, long userId, long guildId, EntitlementType type, boolean deleted, @Nullable OffsetDateTime startsAt, @Nullable OffsetDateTime endsAt, boolean consumed)
{
this.api = api;
this.id = id;
this.skuId = skuId;
this.applicationId = applicationId;
this.userId = userId;
this.guildId = guildId;
this.type = type;
this.deleted = deleted;
this.startsAt = startsAt;
this.endsAt = endsAt;
this.consumed = consumed;
}
@Override
public long getIdLong()
{
return id;
}
@Override
public long getSkuIdLong()
{
return skuId;
}
@Override
public long getApplicationIdLong()
{
return applicationId;
}
@Override
public long getUserIdLong()
{
return userId;
}
@Override
public long getGuildIdLong()
{
return guildId;
}
@Nonnull
@Override
public EntitlementType getType()
{
return type;
}
@Override
public boolean isDeleted()
{
return deleted;
}
@Nullable
@Override
public OffsetDateTime getTimeStarting()
{
return startsAt;
}
@Nullable
@Override
public OffsetDateTime getTimeEnding()
{
return endsAt;
}
@Override
public boolean isConsumed()
{
return consumed;
}
@Nonnull
@Override
public RestAction consume()
{
if (consumed)
return new CompletedRestAction<>(api, null);
Route.CompiledRoute route = Route.Applications.CONSUME_ENTITLEMENT.compile(getApplicationId(), getId());
return new RestActionImpl<>(api, route);
}
}