[JBoss JIRA] (WFLY-9068) Upgrade to JBossWS 5.1.9.Final
by Alessio Soldano (JIRA)
[ https://issues.jboss.org/browse/WFLY-9068?page=com.atlassian.jira.plugin.... ]
Alessio Soldano updated WFLY-9068:
----------------------------------
Description: Upgrade JBossWS to 5.1.9.Final (including upgrade to Apache CXF 3.1.12 and Apache WSS4J 2.1.10) (was: Upgrade JBossWS to 5.1.9.Final (including upgrade to Apache CXF 3.1.12))
> Upgrade to JBossWS 5.1.9.Final
> ------------------------------
>
> Key: WFLY-9068
> URL: https://issues.jboss.org/browse/WFLY-9068
> Project: WildFly
> Issue Type: Component Upgrade
> Components: Web Services
> Reporter: Alessio Soldano
> Assignee: Alessio Soldano
> Fix For: 11.0.0.Beta1
>
>
> Upgrade JBossWS to 5.1.9.Final (including upgrade to Apache CXF 3.1.12 and Apache WSS4J 2.1.10)
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (WFCORE-3056) Model is not validated for write attribute handlers like it is add/remove ones
by Tomaz Cerar (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3056?page=com.atlassian.jira.plugi... ]
Tomaz Cerar updated WFCORE-3056:
--------------------------------
Summary: Model is not validated for write attribute handlers like it is add/remove ones (was: SimpleAttributeDefinitionBuilder.setValidator(new StringAllowedValuesValidator()) doesn't validate the model on runtime, leading to WildFly not booting after writing invalid values)
> Model is not validated for write attribute handlers like it is add/remove ones
> ------------------------------------------------------------------------------
>
> Key: WFCORE-3056
> URL: https://issues.jboss.org/browse/WFCORE-3056
> Project: WildFly Core
> Issue Type: Bug
> Components: Domain Management
> Affects Versions: 3.0.0.Beta28
> Reporter: Ingo Weiss
> Assignee: Brian Stansberry
>
> When creating a new subsystem attribute and using .setValidator(new StringAllowedValuesValidator()) as in the below example:
> {code:java}
> public static final SimpleAttributeDefinition CACHE_TYPE = new SimpleAttributeDefinitionBuilder(Constants.CACHE_TYPE, ModelType.STRING, true)
> .setAllowExpression(true)
> .setValidator(new StringAllowedValuesValidator("default", INFINISPAN_CACHE_TYPE))
> .build();
> {code}
> The model is not validated during runtime, leading to WildFly not being able to boot after a reload due to an invalid model.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (WFCORE-3055) AD#setAllowedValues() does not set validator, leading to incorrect values
by Tomaz Cerar (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3055?page=com.atlassian.jira.plugi... ]
Tomaz Cerar updated WFCORE-3055:
--------------------------------
Summary: AD#setAllowedValues() does not set validator, leading to incorrect values (was: SimpleAttributeDefinitionBuilder.setAllowedValues() doesn't validate the model, leading to incorrect values)
> AD#setAllowedValues() does not set validator, leading to incorrect values
> -------------------------------------------------------------------------
>
> Key: WFCORE-3055
> URL: https://issues.jboss.org/browse/WFCORE-3055
> Project: WildFly Core
> Issue Type: Bug
> Components: Domain Management
> Affects Versions: 3.0.0.Beta28
> Reporter: Ingo Weiss
> Assignee: Brian Stansberry
>
> When creating a new subsystem attribute and using {{.setAllowedValues()}} as in the below example:
> {code:java}
> public static final SimpleAttributeDefinition CACHE_TYPE = new SimpleAttributeDefinitionBuilder(Constants.CACHE_TYPE, ModelType.STRING, true)
> .setAllowExpression(true)
> .setAllowedValues("default", "infinispan")
> .build();
> {code}
> The model is not validated, leading to invalid values on the model.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (WFCORE-3056) SimpleAttributeDefinitionBuilder.setValidator(new StringAllowedValuesValidator()) doesn't validate the model on runtime, leading to WildFly not booting after writing invalid values
by Ingo Weiss (JIRA)
Ingo Weiss created WFCORE-3056:
----------------------------------
Summary: SimpleAttributeDefinitionBuilder.setValidator(new StringAllowedValuesValidator()) doesn't validate the model on runtime, leading to WildFly not booting after writing invalid values
Key: WFCORE-3056
URL: https://issues.jboss.org/browse/WFCORE-3056
Project: WildFly Core
Issue Type: Bug
Components: Domain Management
Affects Versions: 3.0.0.Beta28
Reporter: Ingo Weiss
Assignee: Brian Stansberry
When creating a new subsystem attribute and using .setValidator(new StringAllowedValuesValidator()) as in the below example:
{code:java}
public static final SimpleAttributeDefinition CACHE_TYPE = new SimpleAttributeDefinitionBuilder(Constants.CACHE_TYPE, ModelType.STRING, true)
.setAllowExpression(true)
.setValidator(new StringAllowedValuesValidator("default", INFINISPAN_CACHE_TYPE))
.build();
{code}
The model is not validated during runtime, leading to WildFly not being able to boot after a reload due to an invalid model.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months
[JBoss JIRA] (WFCORE-3055) SimpleAttributeDefinitionBuilder.setAllowedValues() doesn't validate the model, leading to incorrect values
by Ingo Weiss (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3055?page=com.atlassian.jira.plugi... ]
Ingo Weiss updated WFCORE-3055:
-------------------------------
Description:
When creating a new subsystem attribute and using {{.setAllowedValues()}} as in the below example:
{code:java}
public static final SimpleAttributeDefinition CACHE_TYPE = new SimpleAttributeDefinitionBuilder(Constants.CACHE_TYPE, ModelType.STRING, true)
.setAllowExpression(true)
.setAllowedValues("default", "infinispan")
.build();
{code}
The model is not validated, leading to invalid values on the model.
was:
When creating a new subsystem attribute and using {{.setAllowedValues()}} as in the below example:
{code:java}
public static final SimpleAttributeDefinition CACHE_TYPE = new SimpleAttributeDefinitionBuilder(Constants.CACHE_TYPE, ModelType.STRING, true)
.setAllowExpression(true)
.setAllowedValues("default", "infinispan")
.build();
{code}
The model is not validating, leading to invalid values on the model.
> SimpleAttributeDefinitionBuilder.setAllowedValues() doesn't validate the model, leading to incorrect values
> -----------------------------------------------------------------------------------------------------------
>
> Key: WFCORE-3055
> URL: https://issues.jboss.org/browse/WFCORE-3055
> Project: WildFly Core
> Issue Type: Bug
> Components: Domain Management
> Affects Versions: 3.0.0.Beta28
> Reporter: Ingo Weiss
> Assignee: Brian Stansberry
>
> When creating a new subsystem attribute and using {{.setAllowedValues()}} as in the below example:
> {code:java}
> public static final SimpleAttributeDefinition CACHE_TYPE = new SimpleAttributeDefinitionBuilder(Constants.CACHE_TYPE, ModelType.STRING, true)
> .setAllowExpression(true)
> .setAllowedValues("default", "infinispan")
> .build();
> {code}
> The model is not validated, leading to invalid values on the model.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)
8 years, 11 months