| 1 | package com.fwmotion.threescale.cms.model; | |
| 2 | ||
| 3 | import jakarta.annotation.Nonnull; | |
| 4 | import jakarta.annotation.Nullable; | |
| 5 | ||
| 6 | import java.time.OffsetDateTime; | |
| 7 | ||
| 8 | public interface CmsObject { | |
| 9 | ||
| 10 | default boolean isBuiltin() { | |
| 11 |
1
1. isBuiltin : replaced boolean return with true for com/fwmotion/threescale/cms/model/CmsObject::isBuiltin → KILLED |
return false; |
| 12 | } | |
| 13 | ||
| 14 | @Nonnull | |
| 15 | ThreescaleObjectType getType(); | |
| 16 | ||
| 17 | @Nullable | |
| 18 | Long getId(); | |
| 19 | ||
| 20 | OffsetDateTime getCreatedAt(); | |
| 21 | ||
| 22 | OffsetDateTime getUpdatedAt(); | |
| 23 | ||
| 24 | } | |
Mutations | ||
| 11 |
1.1 |