com.hivemq.configuration.entity.MqttConfigEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hivemq-community-edition-embedded Show documentation
Show all versions of hivemq-community-edition-embedded Show documentation
HiveMQ CE is a Java-based open source MQTT broker that fully supports MQTT 3.x and MQTT 5
The newest version!
/*
* Copyright 2019-present HiveMQ GmbH
*
* 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 com.hivemq.configuration.entity;
import com.hivemq.configuration.entity.mqtt.KeepAliveConfigEntity;
import com.hivemq.configuration.entity.mqtt.MessageExpiryConfigEntity;
import com.hivemq.configuration.entity.mqtt.PacketsConfigEntity;
import com.hivemq.configuration.entity.mqtt.QoSConfigEntity;
import com.hivemq.configuration.entity.mqtt.QueuedMessagesConfigEntity;
import com.hivemq.configuration.entity.mqtt.ReceiveMaximumConfigEntity;
import com.hivemq.configuration.entity.mqtt.RetainedMessagesConfigEntity;
import com.hivemq.configuration.entity.mqtt.SessionExpiryConfigEntity;
import com.hivemq.configuration.entity.mqtt.SharedSubscriptionsConfigEntity;
import com.hivemq.configuration.entity.mqtt.SubscriptionIdentifierConfigEntity;
import com.hivemq.configuration.entity.mqtt.TopicAliasConfigEntity;
import com.hivemq.configuration.entity.mqtt.WildcardSubscriptionsConfigEntity;
import com.hivemq.extension.sdk.api.annotations.NotNull;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Dominik Obermaier
*/
@XmlRootElement(name = "mqtt")
@XmlAccessorType(XmlAccessType.NONE)
@SuppressWarnings({"FieldMayBeFinal", "FieldCanBeLocal"})
public class MqttConfigEntity {
@XmlElementRef(required = false)
private @NotNull QueuedMessagesConfigEntity queuedMessagesConfigEntity = new QueuedMessagesConfigEntity();
@XmlElementRef(required = false)
private @NotNull RetainedMessagesConfigEntity retainedMessagesConfigEntity = new RetainedMessagesConfigEntity();
@XmlElementRef(required = false)
private @NotNull WildcardSubscriptionsConfigEntity wildcardSubscriptionsConfigEntity =
new WildcardSubscriptionsConfigEntity();
@XmlElementRef(required = false)
private @NotNull QoSConfigEntity qoSConfigEntity = new QoSConfigEntity();
@XmlElementRef(required = false)
private @NotNull TopicAliasConfigEntity topicAliasConfigEntity = new TopicAliasConfigEntity();
@XmlElementRef(required = false)
private @NotNull MessageExpiryConfigEntity messageExpiryConfigEntity = new MessageExpiryConfigEntity();
@XmlElementRef(required = false)
private @NotNull SessionExpiryConfigEntity sessionExpiryConfigEntity = new SessionExpiryConfigEntity();
@XmlElementRef(required = false)
private @NotNull SubscriptionIdentifierConfigEntity subscriptionIdentifierConfigEntity =
new SubscriptionIdentifierConfigEntity();
@XmlElementRef(required = false)
private @NotNull SharedSubscriptionsConfigEntity sharedSubscriptionsConfigEntity =
new SharedSubscriptionsConfigEntity();
@XmlElementRef(required = false)
private @NotNull KeepAliveConfigEntity keepAliveConfigEntity = new KeepAliveConfigEntity();
@XmlElementRef(required = false)
private @NotNull PacketsConfigEntity packetsConfigEntity = new PacketsConfigEntity();
@XmlElementRef(required = false)
private @NotNull ReceiveMaximumConfigEntity receiveMaximumConfigEntity = new ReceiveMaximumConfigEntity();
public @NotNull KeepAliveConfigEntity getKeepAliveConfigEntity() {
return keepAliveConfigEntity;
}
public @NotNull PacketsConfigEntity getPacketsConfigEntity() {
return packetsConfigEntity;
}
public @NotNull ReceiveMaximumConfigEntity getReceiveMaximumConfigEntity() {
return receiveMaximumConfigEntity;
}
public @NotNull QueuedMessagesConfigEntity getQueuedMessagesConfigEntity() {
return queuedMessagesConfigEntity;
}
public @NotNull RetainedMessagesConfigEntity getRetainedMessagesConfigEntity() {
return retainedMessagesConfigEntity;
}
public @NotNull WildcardSubscriptionsConfigEntity getWildcardSubscriptionsConfigEntity() {
return wildcardSubscriptionsConfigEntity;
}
public @NotNull QoSConfigEntity getQoSConfigEntity() {
return qoSConfigEntity;
}
public @NotNull TopicAliasConfigEntity getTopicAliasConfigEntity() {
return topicAliasConfigEntity;
}
public @NotNull MessageExpiryConfigEntity getMessageExpiryConfigEntity() {
return messageExpiryConfigEntity;
}
public @NotNull SessionExpiryConfigEntity getSessionExpiryConfigEntity() {
return sessionExpiryConfigEntity;
}
public @NotNull SubscriptionIdentifierConfigEntity getSubscriptionIdentifierConfigEntity() {
return subscriptionIdentifierConfigEntity;
}
public @NotNull SharedSubscriptionsConfigEntity getSharedSubscriptionsConfigEntity() {
return sharedSubscriptionsConfigEntity;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy