package com.devicehive.vo; /* * #%L * DeviceHive Common Dao Interfaces * %% * Copyright (C) 2016 DataArt * %% * 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. * #L% */ import com.devicehive.json.strategies.JsonPolicyDef; import com.devicehive.model.HiveEntity; import com.devicehive.model.JsonStringWrapper; import com.google.gson.annotations.SerializedName; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import static com.devicehive.json.strategies.JsonPolicyDef.Policy.*; /** * Equipment value object. */ public class DeviceClassEquipmentVO implements HiveEntity { @SerializedName("id") @JsonPolicyDef({DEVICECLASS_PUBLISHED, EQUIPMENT_PUBLISHED, EQUIPMENTCLASS_SUBMITTED, DEVICE_PUBLISHED}) private Long id; @SerializedName("name") @NotNull(message = "name field cannot be null.") @Size(min = 1, max = 128, message = "Field cannot be empty. The length of name should not be more than 128 symbols.") @JsonPolicyDef({EQUIPMENT_SUBMITTED, DEVICECLASS_PUBLISHED, EQUIPMENT_PUBLISHED, DEVICE_PUBLISHED, DEVICE_SUBMITTED, DEVICECLASS_SUBMITTED}) private String name; @SerializedName("code") @NotNull(message = "code field cannot be null.") @Size(min = 1, max = 128, message = "Field cannot be empty. The length of code should not be more than 128 symbols.") @JsonPolicyDef({EQUIPMENT_SUBMITTED, DEVICECLASS_PUBLISHED, EQUIPMENT_PUBLISHED, DEVICE_PUBLISHED, DEVICE_SUBMITTED, DEVICECLASS_SUBMITTED}) private String code; @SerializedName("type") @NotNull(message = "type field cannot be null.") @Size(min = 1, max = 128, message = "Field cannot be empty. The length of type should not be more than 128 symbols.") @JsonPolicyDef({EQUIPMENT_SUBMITTED, DEVICECLASS_PUBLISHED, EQUIPMENT_PUBLISHED, DEVICE_PUBLISHED, DEVICE_SUBMITTED, DEVICECLASS_SUBMITTED}) private String type; @SerializedName("data") @JsonPolicyDef({EQUIPMENT_SUBMITTED, DEVICECLASS_PUBLISHED, EQUIPMENT_PUBLISHED, DEVICE_PUBLISHED, DEVICE_SUBMITTED, DEVICECLASS_SUBMITTED}) private JsonStringWrapper data; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getType() { return type; } public void setType(String type) { this.type = type; } public JsonStringWrapper getData() { return data; } public void setData(JsonStringWrapper data) { this.data = data; } }