From ee30c880068b1e0f050298369482c61632c4ad3e Mon Sep 17 00:00:00 2001 From: theshadowco Date: Thu, 18 Jan 2024 10:12:25 +0300 Subject: [PATCH 1/3] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B8?= =?UTF-8?q?=20=D1=80=D0=B0=D0=B7=D0=B1=D0=BE=D1=80=D0=B0=20=D1=84=D0=BE?= =?UTF-8?q?=D1=80=D0=BC=20=D0=B8=20=D1=80=D0=BE=D0=BB=D0=B5=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + .../_1c_syntax/bsl/mdo/support/RoleRight.java | 50 +++++++++-------- .../common/converter/EnumConverter.java | 2 +- .../reader/common/xstream/ExtendXStream.java | 44 +++++++-------- .../converter/FormElementConverter.java | 54 +++++++++++-------- 5 files changed, 82 insertions(+), 69 deletions(-) diff --git a/.gitignore b/.gitignore index 4f81bd928..c72564b54 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ build/ /.idea/sonar* /.idea/misc.xml +Gradle_*.xml diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/support/RoleRight.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/support/RoleRight.java index 569cc6fe3..7a0fe2866 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/support/RoleRight.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/support/RoleRight.java @@ -1,25 +1,25 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.mdo.support; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * Tymko Oleg , Maximov Valery and contributors + * + * SPDX-License-Identifier: LGPL-3.0-or-later + * + * MDClasses is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3.0 of the License, or (at your option) any later version. + * + * MDClasses is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with MDClasses. + */ +package com.github._1c_syntax.bsl.mdo.support; import lombok.AllArgsConstructor; import lombok.Getter; @@ -96,7 +96,11 @@ public enum RoleRight implements EnumWithValue { INTERACTIVE_EXECUTE("InteractiveExecute"), TECHNICAL_SPECIALIST_MODE("TechnicalSpecialistMode"), INTERACTIVE_START("InteractiveStart"), - START("Start"); + START("Start"), + STANDARD_AUTHENTICATION_CHANGE("StandardAuthenticationChange"), + SESSION_STANDARD_AUTHENTICATION_CHANGE("SessionStandardAuthenticationChange"), + SESSION_OS_AUTHENTICATION_CHANGE("SessionOSAuthenticationChange") + ; @Accessors(fluent = true) private final String value; diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/EnumConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/EnumConverter.java index 8e34f8194..ea78b5e54 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/EnumConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/EnumConverter.java @@ -49,7 +49,7 @@ private static & EnumWithValue> T fromValue(Class clazz, S return item; } } - throw new IllegalArgumentException(value); + throw new IllegalArgumentException(clazz.getName() + " " + value); } @Override diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/xstream/ExtendXStream.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/xstream/ExtendXStream.java index d94d97017..cae8d59e0 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/xstream/ExtendXStream.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/xstream/ExtendXStream.java @@ -1,25 +1,25 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.reader.common.xstream; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * Tymko Oleg , Maximov Valery and contributors + * + * SPDX-License-Identifier: LGPL-3.0-or-later + * + * MDClasses is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3.0 of the License, or (at your option) any later version. + * + * MDClasses is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with MDClasses. + */ +package com.github._1c_syntax.bsl.reader.common.xstream; import com.github._1c_syntax.bsl.mdclasses.ConfigurationTree; import com.github._1c_syntax.bsl.mdclasses.ExternalDataProcessor; diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormElementConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormElementConverter.java index ec8e54485..bb4e25bf8 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormElementConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/designer/converter/FormElementConverter.java @@ -1,44 +1,52 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.reader.designer.converter; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * Tymko Oleg , Maximov Valery and contributors + * + * SPDX-License-Identifier: LGPL-3.0-or-later + * + * MDClasses is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3.0 of the License, or (at your option) any later version. + * + * MDClasses is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with MDClasses. + */ +package com.github._1c_syntax.bsl.reader.designer.converter; import com.github._1c_syntax.bsl.mdo.storage.form.FormAttribute; import com.github._1c_syntax.bsl.mdo.storage.form.FormItem; import com.github._1c_syntax.bsl.reader.common.context.FormElementReaderContext; +import com.github._1c_syntax.bsl.reader.common.xstream.ExtendXStream; import com.github._1c_syntax.bsl.reader.common.xstream.ReadConverter; import com.thoughtworks.xstream.converters.UnmarshallingContext; import com.thoughtworks.xstream.io.HierarchicalStreamReader; +import lombok.extern.slf4j.Slf4j; /** * Конвертор элемента формы в формате конфигуратора */ @DesignerConverter +@Slf4j public class FormElementConverter implements ReadConverter { @Override public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { var readerContext = new FormElementReaderContext(reader.getNodeName(), reader); + try { + readerContext.setValue("id", Integer.parseInt(reader.getAttribute("id"))); + } catch (NumberFormatException e) { + LOGGER.error("Unknown type {} in file {}", reader.getNodeName(), ExtendXStream.getCurrentPath(reader).toString()); + return null; + } readerContext.setValue("type", reader.getNodeName()); - readerContext.setValue("id", Integer.parseInt(reader.getAttribute("id"))); readerContext.setValue("name", reader.getAttribute("name")); Unmarshaller.unmarshal(reader, context, readerContext); return readerContext.build(); From 4ea8407744d31371930bede5cdaed7607c9b1c38 Mon Sep 17 00:00:00 2001 From: theshadowco Date: Thu, 18 Jan 2024 11:30:42 +0300 Subject: [PATCH 2/3] =?UTF-8?q?=D0=B8=D0=BD=D1=82=D0=B5=D1=80=D0=BD=D0=B8?= =?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D0=B5=20=D0=B4=D0=BB=D1=8F?= =?UTF-8?q?=20=D1=80=D0=BE=D0=BB=D0=B5=D0=B9=20=D0=B8=20=D0=BC=D1=83=D0=BB?= =?UTF-8?q?=D1=8C=D1=82=D0=B8=D1=8F=D0=B7=D1=8B=D1=87=D0=BD=D1=8B=D1=85=20?= =?UTF-8?q?=D1=81=D1=82=D1=80=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../_1c_syntax/bsl/mdo/storage/RoleData.java | 50 +++++++------- .../bsl/mdo/support/MultiLanguageString.java | 65 +++++++++++-------- .../common/converter/RoleDataConverter.java | 4 +- 3 files changed, 68 insertions(+), 51 deletions(-) diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/RoleData.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/RoleData.java index c7561d4a4..428bfad65 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/RoleData.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/storage/RoleData.java @@ -1,28 +1,29 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.mdo.storage; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * Tymko Oleg , Maximov Valery and contributors + * + * SPDX-License-Identifier: LGPL-3.0-or-later + * + * MDClasses is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3.0 of the License, or (at your option) any later version. + * + * MDClasses is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with MDClasses. + */ +package com.github._1c_syntax.bsl.mdo.storage; import com.github._1c_syntax.bsl.mdo.support.RoleRight; import com.github._1c_syntax.bsl.reader.MDOReader; +import com.github._1c_syntax.utils.GenericInterner; import lombok.Builder; import lombok.Builder.Default; import lombok.EqualsAndHashCode; @@ -46,6 +47,7 @@ public class RoleData { public static final RoleData EMPTY = RoleData.builder().build(); + public static final GenericInterner RIGHT_INTERNER = new GenericInterner<>(); /** * Устанавливать права для новых объектов @@ -97,8 +99,8 @@ public static class ObjectRight { } @Value - @ToString(of = {"name"}) - @EqualsAndHashCode(of = {"name"}) + @ToString(of = {"name", "value"}) + @EqualsAndHashCode(of = {"name", "value"}) @Builder public static class Right { /** diff --git a/src/main/java/com/github/_1c_syntax/bsl/mdo/support/MultiLanguageString.java b/src/main/java/com/github/_1c_syntax/bsl/mdo/support/MultiLanguageString.java index 9732583f8..7613e6c23 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/mdo/support/MultiLanguageString.java +++ b/src/main/java/com/github/_1c_syntax/bsl/mdo/support/MultiLanguageString.java @@ -1,27 +1,27 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.mdo.support; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * Tymko Oleg , Maximov Valery and contributors + * + * SPDX-License-Identifier: LGPL-3.0-or-later + * + * MDClasses is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3.0 of the License, or (at your option) any later version. + * + * MDClasses is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with MDClasses. + */ +package com.github._1c_syntax.bsl.mdo.support; -import lombok.AllArgsConstructor; +import com.github._1c_syntax.utils.StringInterner; import lombok.NonNull; import lombok.Value; @@ -34,7 +34,6 @@ * Используется для хранения текстовой строки на разных языках */ @Value -@AllArgsConstructor public class MultiLanguageString { /** @@ -42,14 +41,23 @@ public class MultiLanguageString { */ public static final MultiLanguageString EMPTY = new MultiLanguageString(Collections.emptyMap()); + private static final StringInterner stringInterner = new StringInterner(); + /** * Содержимое описания для каждого языка */ Map content; + public MultiLanguageString(Map source) { + Map newContent = new HashMap<>(); + source.forEach( + (langKey, text) -> newContent.put(stringInterner.intern(langKey), text)); + content = newContent; + } + public MultiLanguageString(@NonNull MultiLanguageString first, @NonNull MultiLanguageString second) { var fullContent = new HashMap<>(first.getContent()); - fullContent.putAll(second.getContent()); + putContent(fullContent, second); content = fullContent; } @@ -68,7 +76,7 @@ public static MultiLanguageString of(@NonNull List strings) return strings.get(0); } else { Map content = new HashMap<>(); - strings.forEach(string -> content.putAll(string.getContent())); + strings.forEach(string -> putContent(content, string)); return new MultiLanguageString(content); } } @@ -103,4 +111,9 @@ public static MultiLanguageString of(@NonNull List strings) public boolean isEmpty() { return this == EMPTY; } + + private static void putContent(Map destination, MultiLanguageString source) { + source.getContent().forEach( + (langKey, text) -> destination.put(stringInterner.intern(langKey), text)); + } } diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/RoleDataConverter.java b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/RoleDataConverter.java index 0aef8d93c..5a93bb3c3 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/RoleDataConverter.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/common/converter/RoleDataConverter.java @@ -24,6 +24,7 @@ import com.github._1c_syntax.bsl.mdo.storage.RoleData; import com.github._1c_syntax.bsl.reader.common.TransformationUtils; import com.github._1c_syntax.bsl.reader.common.xstream.ReadConverter; +import com.github._1c_syntax.utils.GenericInterner; import com.thoughtworks.xstream.converters.UnmarshallingContext; import com.thoughtworks.xstream.io.HierarchicalStreamReader; @@ -89,7 +90,8 @@ private static RoleData.Right readRight(HierarchicalStreamReader reader, Unmarsh TransformationUtils.setValue(builder, name, value); reader.moveUp(); } - return builder.build(); + + return RoleData.RIGHT_INTERNER.intern(builder.build()); } @Override From f00f3f443096acc3f683370d1dd54e80a435e055 Mon Sep 17 00:00:00 2001 From: theshadowco Date: Tue, 23 Jan 2024 14:50:19 +0300 Subject: [PATCH 3/3] fix test --- build.gradle.kts | 4 +- .../_1c_syntax/bsl/reader/FakeReader.java | 44 +- .../_1c_syntax/bsl/reader/MDReader.java | 45 +- ...es.\320\240\320\276\320\273\321\2141.json" | 36 +- ...\262\320\260\320\221\320\241\320\237.json" | 1257 ++++++----------- 5 files changed, 477 insertions(+), 909 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index b8a24ca79..5005f55f3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -56,8 +56,8 @@ dependencies { // прочее implementation("commons-io", "commons-io", "2.8.0") implementation("com.github.1c-syntax", "utils", "0.5.1") - implementation("io.github.1c-syntax", "bsl-common-library", "0.5.0") - implementation("io.github.1c-syntax", "supportconf", "0.12.1") { + implementation("io.github.1c-syntax", "bsl-common-library", "0.5.1") + implementation("io.github.1c-syntax", "supportconf", "0.13.1") { exclude("io.github.1c-syntax", "bsl-common-library") } diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/FakeReader.java b/src/main/java/com/github/_1c_syntax/bsl/reader/FakeReader.java index bdb09de4f..080620afe 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/FakeReader.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/FakeReader.java @@ -1,25 +1,25 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.reader; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * Tymko Oleg , Maximov Valery and contributors + * + * SPDX-License-Identifier: LGPL-3.0-or-later + * + * MDClasses is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3.0 of the License, or (at your option) any later version. + * + * MDClasses is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with MDClasses. + */ +package com.github._1c_syntax.bsl.reader; import com.github._1c_syntax.bsl.mdclasses.MDClass; import com.github._1c_syntax.bsl.mdclasses.MDClasses; diff --git a/src/main/java/com/github/_1c_syntax/bsl/reader/MDReader.java b/src/main/java/com/github/_1c_syntax/bsl/reader/MDReader.java index 816821eda..0958b01f0 100644 --- a/src/main/java/com/github/_1c_syntax/bsl/reader/MDReader.java +++ b/src/main/java/com/github/_1c_syntax/bsl/reader/MDReader.java @@ -1,25 +1,25 @@ -/* - * This file is a part of MDClasses. - * - * Copyright (c) 2019 - 2024 - * Tymko Oleg , Maximov Valery and contributors - * - * SPDX-License-Identifier: LGPL-3.0-or-later - * - * MDClasses is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3.0 of the License, or (at your option) any later version. - * - * MDClasses is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with MDClasses. - */ -package com.github._1c_syntax.bsl.reader; +/* + * This file is a part of MDClasses. + * + * Copyright (c) 2019 - 2024 + * Tymko Oleg , Maximov Valery and contributors + * + * SPDX-License-Identifier: LGPL-3.0-or-later + * + * MDClasses is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3.0 of the License, or (at your option) any later version. + * + * MDClasses is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with MDClasses. + */ +package com.github._1c_syntax.bsl.reader; import com.github._1c_syntax.bsl.mdclasses.MDClass; import com.github._1c_syntax.bsl.reader.common.xstream.ExtendXStream; @@ -65,5 +65,4 @@ default Converter getReflectionConverter() { MDClass readConfiguration(); MDClass readExternalSource(); - } diff --git "a/src/test/resources/fixtures/mdclasses/Roles.\320\240\320\276\320\273\321\2141.json" "b/src/test/resources/fixtures/mdclasses/Roles.\320\240\320\276\320\273\321\2141.json" index eba26ee50..316552234 100644 --- "a/src/test/resources/fixtures/mdclasses/Roles.\320\240\320\276\320\273\321\2141.json" +++ "b/src/test/resources/fixtures/mdclasses/Roles.\320\240\320\276\320\273\321\2141.json" @@ -171,52 +171,40 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INSERT", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" }, { - "name": "UPDATE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" }, { - "name": "DELETE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[4]" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[7]" }, { - "name": "INTERACTIVE_INSERT", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[8]" }, { - "name": "EDIT", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[9]" }, { - "name": "INTERACTIVE_DELETE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[10]" }, { - "name": "INTERACTIVE_SET_DELETION_MARK", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[11]" }, { - "name": "INTERACTIVE_CLEAR_DELETION_MARK", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[12]" }, { - "name": "INTERACTIVE_DELETE_MARKED", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[13]" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[18]" }, { "name": "INTERACTIVE_DELETE_PREDEFINED_DATA", diff --git "a/src/test/resources/fixtures/ssl_3_1/Roles.\320\221\320\260\320\267\320\276\320\262\321\213\320\265\320\237\321\200\320\260\320\262\320\260\320\221\320\241\320\237.json" "b/src/test/resources/fixtures/ssl_3_1/Roles.\320\221\320\260\320\267\320\276\320\262\321\213\320\265\320\237\321\200\320\260\320\262\320\260\320\221\320\241\320\237.json" index af6fb4721..854a43055 100644 --- "a/src/test/resources/fixtures/ssl_3_1/Roles.\320\221\320\260\320\267\320\276\320\262\321\213\320\265\320\237\321\200\320\260\320\262\320\260\320\221\320\241\320\237.json" +++ "b/src/test/resources/fixtures/ssl_3_1/Roles.\320\221\320\260\320\267\320\276\320\262\321\213\320\265\320\237\321\200\320\260\320\262\320\260\320\221\320\241\320\237.json" @@ -40,8 +40,7 @@ "value": true }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -51,8 +50,7 @@ "name": "SessionParameter.ПропуститьПроверкуЗапретаИзменения", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -61,8 +59,7 @@ "rights": [ [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { "name": "SET", @@ -77,12 +74,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -93,12 +88,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -109,12 +102,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -124,8 +115,7 @@ "name": "Catalog.НаборыДополнительныхРеквизитовИСведений", "rights": [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -134,12 +124,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -150,12 +138,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { "name": "INPUT_BY_STRING", @@ -170,12 +156,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -186,12 +170,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -201,8 +183,7 @@ "name": "SessionParameter.ОбновитьВерсиюДатЗапретаИзмененияПослеЗагрузкиДанных", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -210,8 +191,7 @@ "name": "CommonCommand.ПраваДоступа", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -220,12 +200,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -236,12 +214,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -252,16 +228,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -272,12 +245,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -288,12 +259,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -303,8 +272,7 @@ "name": "CommonForm.РегиональныеНастройки", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -313,16 +281,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -333,12 +298,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -349,12 +312,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -365,12 +326,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -380,8 +339,7 @@ "name": "CommonForm.ПанельОтчетов", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -389,8 +347,7 @@ "name": "CommonForm.АутентификацияВСервисе", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -403,8 +360,7 @@ "value": true }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -415,12 +371,10 @@ "rights": [ [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "SET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[5]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" } ], [] @@ -430,8 +384,7 @@ "name": "CommonCommand.НастроитьПрава", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -440,12 +393,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -455,8 +406,7 @@ "name": "SessionParameter.ТекущийПользователь", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -465,12 +415,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -480,8 +428,7 @@ "name": "CommonForm.ФормаВариантаОтчета", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -489,8 +436,7 @@ "name": "CommonForm.ВопросОбУстановкеРасширенияРаботыСФайлами", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -499,12 +445,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -515,12 +459,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -531,12 +473,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -547,12 +487,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -562,8 +500,7 @@ "name": "Catalog.ВариантыОтчетов.Command.Открыть", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -572,12 +509,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -588,12 +523,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -604,12 +537,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -620,12 +551,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -635,8 +564,7 @@ "name": "InformationRegister.ИспользованиеПоставляемыхДополнительныхОтчетовИОбработокВОбластяхДанных", "rights": [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -645,12 +573,10 @@ "rights": [ [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "EDIT", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" } ], [] @@ -660,8 +586,7 @@ "name": "CommonForm.УстановкаВнешнейКомпонентыНевозможна", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -669,8 +594,7 @@ "name": "CommonForm.ВопросОбУстановкеВнешнейКомпоненты", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -678,8 +602,7 @@ "name": "CommonForm.ПраваДоступаУпрощенно", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -687,8 +610,7 @@ "name": "CommonForm.ВыборУзловПлановОбмена", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -697,16 +619,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -716,8 +635,7 @@ "name": "CommonForm.ПредупрежденияПриЗавершенииРаботы", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -726,16 +644,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -745,8 +660,7 @@ "name": "CommonForm.ПредупреждениеБезопасности", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -755,12 +669,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -770,8 +682,7 @@ "name": "CommonForm.ПараметрыПроксиСервера", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -780,12 +691,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -795,8 +704,7 @@ "name": "CommonForm.ВходВПрограммуЗапрещен", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -805,16 +713,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -825,12 +730,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -841,12 +744,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -857,12 +758,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -873,12 +772,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -889,12 +786,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -905,12 +800,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -921,12 +814,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -936,8 +827,7 @@ "name": "SessionParameter.ВыполняетсяОбновлениеИБ", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -946,12 +836,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -962,12 +850,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -978,12 +864,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -993,8 +877,7 @@ "name": "CommonCommand.ПредупрежденияПриЗавершенииРаботы", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1003,12 +886,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1018,8 +899,7 @@ "name": "CommonForm.ВыборРолиИсполнителя", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1028,12 +908,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1044,12 +922,10 @@ "rights": [ [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "SET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[5]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" } ], [] @@ -1059,8 +935,7 @@ "name": "DataProcessor.ИнформацияПриЗапуске.Command.ИнформацияПриЗапуске", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1068,8 +943,7 @@ "name": "CommonForm.РедактированиеГиперссылки", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1078,12 +952,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1093,8 +965,7 @@ "name": "CommonForm.ВводНаРазныхЯзыках", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1102,8 +973,7 @@ "name": "CommonForm.НастройкиПравОбъектов", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1112,12 +982,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1127,8 +995,7 @@ "name": "CommonForm.Вопрос", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1137,24 +1004,20 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { "name": "UPDATE", "value": true }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "EDIT", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -1164,8 +1027,7 @@ "name": "CommonForm.ВыборОбъектовМетаданных", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1174,12 +1036,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1190,12 +1050,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1205,8 +1063,7 @@ "name": "SessionParameter.ОграничениеДоступаНаУровнеЗаписейУниверсально", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1215,12 +1072,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1231,12 +1086,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1247,12 +1100,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1263,12 +1114,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1279,24 +1128,20 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { "name": "INSERT", "value": true }, { - "name": "UPDATE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[83]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -1306,8 +1151,7 @@ "name": "SessionParameter.АвторизованныйПользователь", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1315,8 +1159,7 @@ "name": "CommonForm.ФормаНастроекОтчета", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1324,8 +1167,7 @@ "name": "CommonForm.ФормаПоиска", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1333,8 +1175,7 @@ "name": "CommonForm.РасширенноеПредставлениеОшибки", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1343,12 +1184,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1359,12 +1198,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1374,8 +1211,7 @@ "name": "DataProcessor.ЗаполнениеКалендарныхГрафиков", "rights": [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1384,12 +1220,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1400,12 +1234,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1416,12 +1248,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1431,8 +1261,7 @@ "name": "CommonForm.ВыборФорматаВложений", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1441,12 +1270,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1457,12 +1284,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1472,8 +1297,7 @@ "name": "SessionParameter.ВерсияРасширений", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1482,12 +1306,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1498,12 +1320,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1513,8 +1333,7 @@ "name": "CommonForm.ПраваДоступа", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1523,12 +1342,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1538,8 +1355,7 @@ "name": "CommonForm.СменаПароля", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1547,8 +1363,7 @@ "name": "CommonForm.ВыборИсполнителяБизнесПроцесса", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1557,16 +1372,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -1577,12 +1389,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1593,16 +1403,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -1613,16 +1420,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -1633,12 +1437,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1649,12 +1451,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1665,12 +1465,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1681,12 +1479,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1696,8 +1492,7 @@ "name": "CommonForm.Склонения", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1706,12 +1501,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1722,12 +1515,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1738,12 +1529,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1754,12 +1543,10 @@ "rights": [ [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "SET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[5]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" } ], [] @@ -1770,12 +1557,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1785,8 +1570,7 @@ "name": "CommonCommand.УстановитьРасширениеДляРаботыС1СПредприятием", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1794,8 +1578,7 @@ "name": "CommonForm.ПодготовкаНовогоПисьма", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1803,8 +1586,7 @@ "name": "CommonForm.НапоминаниеПриРедактировании", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1813,12 +1595,10 @@ "rights": [ [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "EDIT", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" } ], [] @@ -1828,8 +1608,7 @@ "name": "CommonForm.ВыборДаты", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1837,8 +1616,7 @@ "name": "SessionParameter.ОсновнойЯзык", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1846,8 +1624,7 @@ "name": "DataProcessor.ПолнотекстовыйПоискВДанных.Command.ПолнотекстовыйПоиск", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1855,8 +1632,7 @@ "name": "CommonForm.СравнениеТабличныхДокументов", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1865,12 +1641,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1881,12 +1655,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1897,12 +1669,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1912,8 +1682,7 @@ "name": "CommonForm.ПечатьДокументов", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1921,8 +1690,7 @@ "name": "CommonForm.ВыборТиповПользователей", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1931,12 +1699,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1947,12 +1713,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1962,8 +1726,7 @@ "name": "CommonForm.ФормаОтчета", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -1972,12 +1735,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -1988,12 +1749,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2004,12 +1763,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2020,16 +1777,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -2039,8 +1793,7 @@ "name": "CommonCommand.СменитьПароль", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2049,12 +1802,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2064,8 +1815,7 @@ "name": "CommonForm.ВспомогательнаяФормаНастроекОтчета", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2074,12 +1824,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2090,12 +1838,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2106,12 +1852,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2122,12 +1866,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2137,8 +1879,7 @@ "name": "CommonForm.РедактированиеТабличногоДокумента", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2147,12 +1888,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2163,16 +1902,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -2183,12 +1919,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2198,8 +1932,7 @@ "name": "CommonForm.НастройкаРабочегоКаталога", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2207,8 +1940,7 @@ "name": "CommonForm.КонтрольДинамическогоОбновления", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2217,12 +1949,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2233,16 +1963,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -2253,12 +1980,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2269,12 +1994,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2285,16 +2008,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -2305,16 +2025,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -2325,12 +2042,10 @@ "rights": [ [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "SET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[5]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" } ], [] @@ -2341,12 +2056,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2357,12 +2070,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2373,12 +2084,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2389,12 +2098,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2405,12 +2112,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2421,16 +2126,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -2440,8 +2142,7 @@ "name": "DataProcessor.НастройкиПользователей.Command.НастройкиПользователя", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2450,16 +2151,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -2470,12 +2168,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2485,8 +2181,7 @@ "name": "CommonForm.ВыборДействияПриОбнаруженииОтличийФайла", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2495,12 +2190,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2511,12 +2204,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2526,8 +2217,7 @@ "name": "SessionParameter.ПараметрыОбработчикаОбновления", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2536,12 +2226,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "UPDATE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[83]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" } ], [] @@ -2551,8 +2239,7 @@ "name": "CommonCommand.ПрисоединенныеФайлы", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2560,8 +2247,7 @@ "name": "CommonForm.ПоддерживаемыеКлиентскиеПриложения", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2569,8 +2255,7 @@ "name": "CommonCommand.Обсуждения", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2579,12 +2264,10 @@ "rights": [ [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "SET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[5]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" } ], [] @@ -2595,12 +2278,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2611,12 +2292,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2627,12 +2306,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2643,12 +2320,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2659,16 +2334,13 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "INPUT_BY_STRING", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[11]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[3]" } ], [] @@ -2679,12 +2351,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2694,8 +2364,7 @@ "name": "CommonForm.СозданиеНачальногоОбразаСФайлами", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2704,12 +2373,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2720,12 +2387,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2736,12 +2401,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2752,12 +2415,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2768,12 +2429,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2784,12 +2443,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2800,12 +2457,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2816,12 +2471,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2831,8 +2484,7 @@ "name": "CommonForm.ВводЗначенийСпискомСФлажками", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2841,12 +2493,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2857,12 +2507,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2873,12 +2521,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2889,12 +2535,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2905,12 +2549,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2920,8 +2562,7 @@ "name": "SessionParameter.ОтключениеОбновленияКлючейДоступа", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -2962,12 +2603,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2978,12 +2617,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -2994,12 +2631,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3009,8 +2644,7 @@ "name": "SessionParameter.ПараметрыКлиентаНаСервере", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3019,12 +2653,10 @@ "rights": [ [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "EDIT", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right[2]" } ], [] @@ -3034,8 +2666,7 @@ "name": "SessionParameter.ДатаОбновленияПовторноИспользуемыхЗначенийМРО", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3044,12 +2675,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3060,12 +2689,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3075,8 +2702,7 @@ "name": "SessionParameter.ТекущийВнешнийПользователь", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3085,12 +2711,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3101,12 +2725,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3116,8 +2738,7 @@ "name": "SessionParameter.УстановленныеРасширения", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3125,8 +2746,7 @@ "name": "CommonCommand.ПерсональнаяНастройкаПроксиСервера", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3134,8 +2754,7 @@ "name": "CommonForm.ПустойРабочийСтол", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3144,12 +2763,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3160,12 +2777,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3176,12 +2791,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3191,8 +2804,7 @@ "name": "SessionParameter.ДействующиеДатыЗапретаИзменения", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3200,8 +2812,7 @@ "name": "SessionParameter.РаботаСВнешнимиРесурсамиЗаблокирована", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3210,12 +2821,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3226,12 +2835,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3241,8 +2848,7 @@ "name": "CommonForm.ДлительнаяОперация", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3251,12 +2857,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3266,8 +2870,7 @@ "name": "CommonForm.СохранениеПечатнойФормы", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3276,12 +2879,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3291,8 +2892,7 @@ "name": "SessionParameter.ПодключенныеРасширения", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3301,12 +2901,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3317,12 +2915,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3333,12 +2929,10 @@ "rights": [ [ { - "name": "USE", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[28]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3349,12 +2943,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3365,12 +2957,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3381,12 +2971,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3397,12 +2985,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3412,8 +2998,7 @@ "name": "CommonForm.ВыборПутиКАрхивуФайловТомов", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3421,8 +3006,7 @@ "name": "SessionParameter.ОбластьДанныхЗначение", "rights": [ { - "name": "GET", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[2]/rights/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }, @@ -3431,12 +3015,10 @@ "rights": [ [ { - "name": "READ", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight[3]/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" }, { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ], [] @@ -3446,8 +3028,7 @@ "name": "CommonForm.НовыйПароль", "rights": [ { - "name": "VIEW", - "value": true + "@reference": "/com.github._1c_syntax.bsl.mdo.Role/data/objectRights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$ObjectRight/rights/c/com.github._1c_syntax.bsl.mdo.storage.RoleData$Right" } ] }