Skip to content

Commit

Permalink
Merge pull request #3848 from smillidge/PAYARA-3686
Browse files Browse the repository at this point in the history
PAYARA-3686 unable to save the Default Principal in the Sercurity Ser…
  • Loading branch information
arjantijms committed Mar 18, 2019
2 parents 74244ae + 5d0f627 commit aa5775e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -66,10 +66,10 @@
/>
</sun:property>
<sun:property id="defaultPrincipalProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.security.DefaultPrincipal}" helpText="$resource{i18nc.security.DefaultPrincipalHelp}">
<sun:textField id="DefaultPrincipal" columns="$int{55}" maxLength="#{sessionScope.fieldLengths['maxLength.security.DefaultPrincipal']}" text="#{requestScope.principal}"/>
<sun:textField id="DefaultPrincipal" columns="$int{55}" maxLength="#{sessionScope.fieldLengths['maxLength.security.DefaultPrincipal']}" text="#{pageSession.valueMap['defaultPrincipal']}"/>
</sun:property>
<sun:property id="defaultPrincipalPasswordProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.security.DefaultPrincipalPassword}" helpText="$resource{i18nc.security.DefaultPrincipalPasswordHelp}">
<sun:passwordField id="DefaultPrincipalPassword" name="password" columns="$int{55}" maxLength="#{sessionScope.fieldLengths['maxLength.security.DefaultPrincipalPassword']}" text="#{requestScope.password}"/>
<sun:passwordField id="DefaultPrincipalPassword" name="password" columns="$int{55}" maxLength="#{sessionScope.fieldLengths['maxLength.security.DefaultPrincipalPassword']}" text="#{pageSession.valueMap['defaultPrincipalPassword']}"/>
</sun:property>
<sun:property id="jaccProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18nc.security.Jacc}" helpText="$resource{i18nc.security.JaccHelp}">
<sun:dropDown id="Jacc" labels="$pageSession{jaccs}" selected="#{pageSession.valueMap['jacc']}" />
Expand Down

0 comments on commit aa5775e

Please sign in to comment.