Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PAYARA-1729 regression fix #1719

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<sun:checkbox id="Security" label="$resource{i18n.desc.Enabled}" selected="#{pageSession.valueMap['securityEnabled']}" selectedValue="true" />
</sun:property>
<sun:property id="LazyInitProp" labelAlign="left" noWrap="#{true}" overlapLabel="#{false}" label="$resource{i18n_corba.iiopListener.lazyInitLabel}" helpText="$resource{i18n_corba.iiopListener.lazyInitHelp}" >
<sun:checkbox id="lazyInit" label="$resource{i18n.desc.Enabled}" selected="#{pageSession.valueMap['lazyInit']}" selectedValue="true" />
<sun:checkbox id="lazyInitEnabled" label="$resource{i18n.desc.Enabled}" selected="#{pageSession.valueMap['lazyInit']}" selectedValue="true" />
</sun:property>
</sun:propertySheetSection>
</sun:propertySheet>
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
//set the following for including buttons.inc
setPageSessionAttribute(key="convertToFalseList" value={"securityEnabled" "enabled" "lazyInit"})
setPageSessionAttribute(key="edit" value="#{false}" );
setPageSessionAttribute(key="skipAttrsList" value={"Enabled", "Port", "Security-enabled"});
setPageSessionAttribute(key="skipAttrsList" value={"Enabled", "Port", "Security-enabled", "lazyInit"});
setPageSessionAttribute(key="showDefaultButton" value="#{true}" );
setPageSessionAttribute(key="showCancelButton" value="#{true}" );
setPageSessionAttribute(key="hasPropertySheet" value="#{true}" );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public interface IiopListener extends ConfigBeanProxy, PropertyBag, Payload {
*
* @param value true if the listener is to be started lazily; false otherwise
*/
void setLazyInit(boolean value) throws PropertyVetoException;
void setLazyInit(String value) throws PropertyVetoException;

/**
Properties as per {@link org.jvnet.hk2.config.types.PropertyBag}
Expand Down