BAEL-614 base module for cache-control

This commit is contained in:
Tomasz Lelek
2017-01-25 23:06:22 +01:00
committed by Andrew Morgan
parent b57cf0cf56
commit c7203bd564
7 changed files with 160 additions and 0 deletions
@@ -0,0 +1,10 @@
package com.baeldung.cachecontrol.model;
public class TimestampDto {
public final Long timestamp;
public TimestampDto(Long timestamp) {
this.timestamp = timestamp;
}
}
@@ -0,0 +1,11 @@
package com.baeldung.cachecontrol.model;
public class UserDto {
public final String name;
public UserDto(String name) {
this.name = name;
}
}