com.pubnub.internal.endpoints.files.PublishFileMessageImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubnub-gson-impl Show documentation
Show all versions of pubnub-gson-impl Show documentation
PubNub is a cross-platform client-to-client (1:1 and 1:many) push service in the cloud, capable of broadcasting real-time messages to millions of web and mobile clients simultaneously, in less than a quarter second!
package com.pubnub.internal.endpoints.files;
import com.pubnub.api.PubNubException;
import com.pubnub.api.builder.PubNubErrorBuilder;
import com.pubnub.api.endpoints.BuilderSteps;
import com.pubnub.api.endpoints.files.PublishFileMessage;
import com.pubnub.api.endpoints.files.requiredparambuilder.FilesBuilderSteps;
import com.pubnub.api.models.consumer.files.PNPublishFileMessageResult;
import com.pubnub.internal.EndpointInterface;
import com.pubnub.internal.PubNubCore;
import com.pubnub.internal.endpoints.IdentityMappingEndpoint;
import com.pubnub.internal.endpoints.files.requiredparambuilder.ChannelFileNameFileIdBuilder;
import lombok.Setter;
import lombok.experimental.Accessors;
import org.jetbrains.annotations.NotNull;
@Setter
@Accessors(chain = true, fluent = true)
public class PublishFileMessageImpl extends IdentityMappingEndpoint implements PublishFileMessage {
@Setter
private Object message;
@Setter
private Object meta;
@Setter
private Integer ttl;
@Setter
private Boolean shouldStore;
private final String channel;
private final String fileName;
private final String fileId;
public PublishFileMessageImpl(String channel, String fileName, String fileId, PubNubCore pubnub) {
super(pubnub);
this.channel = channel;
this.fileName = fileName;
this.fileId = fileId;
}
@Override
@NotNull
protected EndpointInterface createAction() {
return pubnub.publishFileMessage(
channel,
fileName,
fileId,
message,
meta,
ttl,
shouldStore
);
}
public static PublishFileMessage.Builder builder(PubNubCore pubNub) {
return new Builder(ChannelFileNameFileIdBuilder.create((channel, fileName, fileId) ->
new PublishFileMessageImpl(channel, fileName, fileId, pubNub)));
}
public static class Builder extends ChannelFileNameFileIdBuilder
implements PublishFileMessage.Builder {
private Builder(BuilderSteps.ChannelStep>> builder) {
super(builder);
}
}
@Override
protected void validateParams() throws PubNubException {
if (channel == null) {
throw new PubNubException(PubNubErrorBuilder.PNERROBJ_CHANNEL_MISSING);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy