16 changed files with 207 additions and 155 deletions
@ -0,0 +1,60 @@ |
|||
/** |
|||
* Copyright © 2016-2021 The Thingsboard Authors |
|||
* |
|||
* 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 org.thingsboard.server.service.edge.rpc; |
|||
|
|||
import com.google.protobuf.BoolValue; |
|||
import com.google.protobuf.ByteString; |
|||
import com.google.protobuf.BytesValue; |
|||
import com.google.protobuf.Int64Value; |
|||
import com.google.protobuf.StringValue; |
|||
|
|||
public class EdgeProtoUtils { |
|||
|
|||
private EdgeProtoUtils() { |
|||
} |
|||
|
|||
public static BoolValue getBoolValue(Boolean value) { |
|||
BoolValue.Builder builder = BoolValue.newBuilder(); |
|||
if (value != null) { |
|||
builder.setValue(value); |
|||
} |
|||
return builder.build(); |
|||
} |
|||
|
|||
public static StringValue getStringValue(String value) { |
|||
StringValue.Builder builder = StringValue.newBuilder(); |
|||
if (value != null) { |
|||
builder.setValue(value); |
|||
} |
|||
return builder.build(); |
|||
} |
|||
|
|||
public static Int64Value getInt64Value(Long value) { |
|||
Int64Value.Builder builder = Int64Value.newBuilder(); |
|||
if (value != null) { |
|||
builder.setValue(value); |
|||
} |
|||
return builder.build(); |
|||
} |
|||
|
|||
public static BytesValue getBytesValue(ByteString value) { |
|||
BytesValue.Builder builder = BytesValue.newBuilder(); |
|||
if (value != null) { |
|||
builder.setValue(value); |
|||
} |
|||
return builder.build(); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue