remove jetbrains annotations
This commit is contained in:
parent
bcc922e07e
commit
6ad1b10c09
@ -18,7 +18,6 @@ package org.thingsboard.server.config;
|
||||
import com.fasterxml.classmate.TypeResolver;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.lang3.RandomStringUtils;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
@ -153,7 +152,7 @@ public class SwaggerConfiguration {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supports(@NotNull DocumentationType delimiter) {
|
||||
public boolean supports(DocumentationType delimiter) {
|
||||
return DocumentationType.SWAGGER_2.equals(delimiter) || DocumentationType.OAS_30.equals(delimiter);
|
||||
}
|
||||
};
|
||||
@ -175,7 +174,7 @@ public class SwaggerConfiguration {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supports(@NotNull DocumentationType delimiter) {
|
||||
public boolean supports(DocumentationType delimiter) {
|
||||
return DocumentationType.SWAGGER_2.equals(delimiter) || DocumentationType.OAS_30.equals(delimiter);
|
||||
}
|
||||
};
|
||||
|
||||
@ -17,7 +17,6 @@ package org.thingsboard.server.exception;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.http.HttpHeaders;
|
||||
import org.springframework.http.HttpStatus;
|
||||
@ -139,12 +138,11 @@ public class ThingsboardErrorResponseHandler extends ResponseEntityExceptionHand
|
||||
}
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
protected ResponseEntity<Object> handleExceptionInternal(
|
||||
@NotNull Exception ex, @Nullable Object body,
|
||||
@NotNull HttpHeaders headers, @NotNull HttpStatus status,
|
||||
@NotNull WebRequest request) {
|
||||
Exception ex, @Nullable Object body,
|
||||
HttpHeaders headers, HttpStatus status,
|
||||
WebRequest request) {
|
||||
if (HttpStatus.INTERNAL_SERVER_ERROR.equals(status)) {
|
||||
request.setAttribute(WebUtils.ERROR_EXCEPTION_ATTRIBUTE, ex, WebRequest.SCOPE_REQUEST);
|
||||
}
|
||||
|
||||
@ -20,7 +20,6 @@ import com.google.common.util.concurrent.Futures;
|
||||
import com.google.common.util.concurrent.ListenableFuture;
|
||||
import com.google.common.util.concurrent.MoreExecutors;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.springframework.context.annotation.Lazy;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.thingsboard.common.util.ThingsBoardThreadFactory;
|
||||
@ -145,7 +144,6 @@ public class DefaultTelemetrySubscriptionService extends AbstractSubscriptionSer
|
||||
}
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private FutureCallback<Integer> getCallback(TenantId tenantId, CustomerId customerId, boolean sysTenant, FutureCallback<Void> callback) {
|
||||
return new FutureCallback<>() {
|
||||
@Override
|
||||
|
||||
@ -18,7 +18,6 @@ package org.thingsboard.server.service.edge.rpc.constructor;
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
@ -315,7 +314,6 @@ public class RuleChainMsgConstructorTest {
|
||||
}
|
||||
|
||||
|
||||
@NotNull
|
||||
private RuleNode getOutputNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.flow.TbRuleChainOutputNode",
|
||||
@ -324,7 +322,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"description\":\"\",\"layoutX\":178,\"layoutY\":592}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getCheckpointNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.flow.TbCheckpointNode",
|
||||
@ -333,7 +330,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"description\":\"\",\"layoutX\":178,\"layoutY\":647}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getSaveTimeSeriesNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.telemetry.TbMsgTimeseriesNode",
|
||||
@ -342,7 +338,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"layoutX\":823,\"layoutY\":157}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getMessageTypeSwitchNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.filter.TbMsgTypeSwitchNode",
|
||||
@ -351,7 +346,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"layoutX\":347,\"layoutY\":149}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getLogOtherNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.action.TbLogNode",
|
||||
@ -360,7 +354,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"layoutX\":824,\"layoutY\":378}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getPushToCloudNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.edge.TbMsgPushToCloudNode",
|
||||
@ -369,7 +362,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"layoutX\":1129,\"layoutY\":52}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getAcknowledgeNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.flow.TbAckNode",
|
||||
@ -378,7 +370,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"description\":\"\",\"layoutX\":177,\"layoutY\":703}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getDeviceProfileNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.profile.TbDeviceProfileNode",
|
||||
@ -387,7 +378,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"description\":\"Process incoming messages from devices with the alarm rules defined in the device profile. Dispatch all incoming messages with \\\"Success\\\" relation type.\",\"layoutX\":187,\"layoutY\":468}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getSaveClientAttributesNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.telemetry.TbMsgAttributesNode",
|
||||
@ -396,7 +386,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"layoutX\":824,\"layoutY\":52}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getLogRpcFromDeviceNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.action.TbLogNode",
|
||||
@ -405,7 +394,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"layoutX\":825,\"layoutY\":266}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getRpcCallRequestNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.rpc.TbSendRPCRequestNode",
|
||||
@ -414,7 +402,6 @@ public class RuleChainMsgConstructorTest {
|
||||
JacksonUtil.OBJECT_MAPPER.readTree("{\"layoutX\":824,\"layoutY\":466}"));
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private RuleNode getPushToAnalyticsNode(RuleChainId ruleChainId) throws JsonProcessingException {
|
||||
return createRuleNode(ruleChainId,
|
||||
"org.thingsboard.rule.engine.flow.TbRuleChainInputNode",
|
||||
|
||||
@ -17,7 +17,6 @@ package org.thingsboard.server.service.sql;
|
||||
|
||||
import com.google.gson.JsonObject;
|
||||
import com.google.gson.JsonParser;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.junit.After;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
@ -180,7 +179,6 @@ public class SequentialTimeseriesPersistenceTest extends AbstractControllerTest
|
||||
saveTimeseries(asset.getId(), saveTsKvEntry);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
JsonObject getJsonObject(String key, long value, Optional<String> tsKvEntryOpt) {
|
||||
JsonObject jsonObject = new JsonObject();
|
||||
if (tsKvEntryOpt.isPresent()) {
|
||||
|
||||
@ -21,11 +21,8 @@ import lombok.EqualsAndHashCode;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import lombok.ToString;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.thingsboard.server.common.data.EntityType;
|
||||
import org.thingsboard.server.common.data.EventInfo;
|
||||
import org.thingsboard.server.common.data.id.EntityId;
|
||||
import org.thingsboard.server.common.data.id.EntityIdFactory;
|
||||
import org.thingsboard.server.common.data.id.TenantId;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
@ -19,7 +19,6 @@ import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.thingsboard.server.common.data.id.RuleChainId;
|
||||
import org.thingsboard.server.common.data.id.RuleNodeId;
|
||||
|
||||
|
||||
@ -19,7 +19,6 @@ import lombok.extern.slf4j.Slf4j;
|
||||
import org.eclipse.leshan.core.SecurityMode;
|
||||
import org.eclipse.leshan.server.security.NonUniqueSecurityInfoException;
|
||||
import org.eclipse.leshan.server.security.SecurityInfo;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
import org.thingsboard.server.transport.lwm2m.secure.LwM2mCredentialsSecurityInfoValidator;
|
||||
import org.thingsboard.server.transport.lwm2m.secure.TbLwM2MSecurityInfo;
|
||||
import org.thingsboard.server.transport.lwm2m.server.client.LwM2MAuthException;
|
||||
@ -81,7 +80,6 @@ public class TbLwM2mSecurityStore implements TbMainSecurityStore {
|
||||
return securityInfo;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
public SecurityInfo fetchAndPutSecurityInfo(String credentialsId) {
|
||||
TbLwM2MSecurityInfo securityInfo = validator.getEndpointSecurityInfoByCredentialsId(credentialsId, CLIENT);
|
||||
doPut(securityInfo);
|
||||
|
||||
@ -19,7 +19,6 @@ import com.datastax.oss.driver.api.core.uuid.Uuids;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.google.common.collect.Lists;
|
||||
import com.google.common.util.concurrent.Futures;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.mockito.ArgumentCaptor;
|
||||
import org.mockito.Mock;
|
||||
@ -205,7 +204,6 @@ public abstract class AbstractAttributeNodeTest {
|
||||
return getConfig(true);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private TbGetEntityAttrNodeConfiguration getConfig(boolean isTelemetry) {
|
||||
TbGetEntityAttrNodeConfiguration config = new TbGetEntityAttrNodeConfiguration();
|
||||
Map<String, String> conf = new HashMap<>();
|
||||
|
||||
@ -16,7 +16,6 @@
|
||||
package org.thingsboard.rule.engine.metadata;
|
||||
|
||||
import com.google.common.util.concurrent.Futures;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
@ -84,7 +83,6 @@ public class TbGetRelatedAttributeNodeTest extends AbstractAttributeNodeTest {
|
||||
return getConfig(true);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private TbGetEntityAttrNodeConfiguration getConfig(boolean isTelemetry) {
|
||||
TbGetRelatedAttrNodeConfiguration config = new TbGetRelatedAttrNodeConfiguration();
|
||||
config = config.defaultConfiguration();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user