| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | package com.hltech.judged.server.domain; |
||
| 14 | @Embeddable |
||
| 15 | @Getter |
||
| 16 | @EqualsAndHashCode(callSuper = true) |
||
| 17 | @NoArgsConstructor(access = PROTECTED) |
||
| 18 | @Access(AccessType.FIELD) |
||
| 19 | public class SpaceServiceVersion extends ServiceVersion { |
||
| 20 | |||
| 21 | private String space; |
||
| 22 | |||
| 23 | public SpaceServiceVersion(String space, String name, String version) { |
||
| 24 | super(name, version); |
||
| 25 | this.space = checkNotNull(space, "space name cannot be null"); |
||
| 26 | } |
||
| 29 |