[NO-TICKET] *expand device registration info
[platform/core/security/suspicious-activity-monitor.git] / server / src / main / java / com / samsung / samserver / domain / DeviceType.java
1 /*
2  * In Samsung Ukraine R&D Center (SRK under a contract between)
3  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
4  * Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
5  */
6 package com.samsung.samserver.domain;
7
8 import javax.persistence.*;
9 import java.io.Serializable;
10
11 /**
12  * A DeviceType.
13  */
14 @Entity
15 @Table(name = "device_type")
16 public class DeviceType  extends AbstractType implements Serializable {
17
18     private static final long serialVersionUID = 1L;
19
20     public DeviceType() {
21     }
22
23     public DeviceType(String name, String descr) {
24         this.name = name;
25         this.descr = descr;
26     }
27
28 }