Fix json props.

This commit is contained in:
Paulo Gustavo Veiga
2024-02-09 00:02:56 -08:00
parent 05c2e545ae
commit 34318c1e3f
4 changed files with 33 additions and 36 deletions

View File

@@ -33,7 +33,6 @@ import org.jetbrains.annotations.NotNull;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.i18n.LocaleContextHolder;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.prepost.PreAuthorize;
@@ -206,7 +205,6 @@ public class MindmapController extends BaseController {
return mindmapHistory.getUnzipXml();
}
/**
* The intention of this method is the update of several properties at once ...
*/

View File

@@ -35,6 +35,14 @@ public class RestMindmapMetadata {
private String jsonProps;
private boolean locked;
private String title;
private String isLockedBy;
public RestMindmapMetadata(@NotNull String title, @NotNull String jsonProps, boolean locked, @Nullable String isLockedBy) {
this.jsonProps = jsonProps;
this.title = title;
this.locked = locked;
this.isLockedBy = isLockedBy;
}
public String getJsonProps() {
return jsonProps;
@@ -60,21 +68,11 @@ public class RestMindmapMetadata {
this.title = title;
}
public String getLockFullName() {
return lockFullName;
public String getIsLockedBy() {
return isLockedBy;
}
public void setLockFullName(String lockFullName) {
this.lockFullName = lockFullName;
public void setIsLockedBy(String isLockedBy) {
this.isLockedBy = isLockedBy;
}
private String lockFullName;
public RestMindmapMetadata(@NotNull String title, @NotNull String jsonProps, boolean locked, @Nullable String lockFullName) {
this.jsonProps = jsonProps;
this.title = title;
this.locked = locked;
this.lockFullName = lockFullName;
}
}