Open Kilda Java Documentation
ActivityTypeInfo.java
Go to the documentation of this file.
1 package org.openkilda.log.model;
2 
3 public class ActivityTypeInfo {
4 
5  private long id;
6 
7  private String name;
8 
9  public ActivityTypeInfo(final long id, final String name) {
10  this.id = id;
11  this.name = name;
12  }
13 
14  public long getId() {
15  return id;
16  }
17 
18  public void setId(final long id) {
19  this.id = id;
20  }
21 
22  public String getName() {
23  return name;
24  }
25 
26  public void setName(final String name) {
27  this.name = name;
28  }
29 }
ActivityTypeInfo(final long id, final String name)