Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Evolveum/midpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Mar 29, 2023
2 parents 9ab398d + 11a6c6b commit 2243f1d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,10 @@ protected void updateDefinitions() {
} else {
objectClass = objectClassDef.getTypeName();
if (getIntent() == null) {
intent = ((ResourceObjectTypeDefinitionImpl) objectClassDef).getIntent();
ResourceObjectTypeDefinition typeDefinition = objectClassDef.getTypeDefinition();
if (typeDefinition != null) {
intent = typeDefinition.getIntent();
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15081,15 +15081,12 @@
triggered. If the situation is not explicitly stated then
default situation will be selected instead. The situation
is determined by the constraint that triggered the rule.
DEPRECATED. Use markRef instead.

TODO specify the time of planned removal
Will be eventually replaced by markRef.
</xsd:documentation>
<xsd:appinfo>
<a:displayName>PolicyRuleType.policySituation</a:displayName>
<a:help>PolicyRuleType.policySituation.help</a:help>
<a:deprecated>true</a:deprecated>
<a:deprecatedSince>4.7</a:deprecatedSince>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
</xsd:appinfo>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="name" type="xsd:string" >
<xsd:element name="name" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
Unique name of the authentication module. This name is fact a short identifier.
Expand Down

0 comments on commit 2243f1d

Please sign in to comment.