Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit efbef75

Browse files
committed
Fix AccesControlMixin for xml dataformat
1 parent e29f0ff commit efbef75

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dataformat-xml/src/main/java/io/adminshell/aas/v3/dataformat/xml/mixins/AccessControlMixin.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021 Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e. V.
2+
* Copyright (c) 2021 Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e. V.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,10 +23,10 @@
2323
import io.adminshell.aas.v3.model.AccessPermissionRule;
2424

2525
public interface AccessControlMixin {
26-
@JacksonXmlProperty(namespace = AasXmlNamespaceContext.ABAC_PREFERRED_PREFIX, localName = "accessPermissionRule")
26+
@JacksonXmlProperty(namespace = AasXmlNamespaceContext.ABAC_URI, localName = "accessPermissionRule")
2727
public List<AccessPermissionRule> getAccessPermissionRules();
2828

29-
@JacksonXmlProperty(namespace = AasXmlNamespaceContext.ABAC_PREFERRED_PREFIX, localName = "accessPermissionRule")
29+
@JacksonXmlProperty(namespace = AasXmlNamespaceContext.ABAC_URI, localName = "accessPermissionRule")
3030
public void setAccessPermissionRules(List<AccessPermissionRule> accessPermissionRules);
3131

3232
}

0 commit comments

Comments
 (0)