[JBoss JIRA] (ELY-816) Support for masked passwords in client XML config
by David Lloyd (JIRA)
[ https://issues.jboss.org/browse/ELY-816?page=com.atlassian.jira.plugin.sy... ]
David Lloyd commented on ELY-816:
---------------------------------
There was a hashed-password-type when this was written in 2016, but I think it is gone now, in favor of the credential store. I think a dedicated type may be necessary - if we decide this should still be supported.
> Support for masked passwords in client XML config
> -------------------------------------------------
>
> Key: ELY-816
> URL: https://issues.jboss.org/browse/ELY-816
> Project: WildFly Elytron
> Issue Type: Task
> Reporter: David Lloyd
> Assignee: Jan Kalina
> Priority: Critical
> Fix For: 1.3.1.Final
>
>
> We need a way to support masked passwords in the auth configuration file, either as:
> * A dedicated masked-password-type XML type
> * Adding necessary fields to hashed-password-type
> * Adding a modular crypt format
> Needs to be supported anywhere passwords are allowed.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (WFCORE-3769) Use Galleon for the WildFly Core build
by Brian Stansberry (JIRA)
[ https://issues.jboss.org/browse/WFCORE-3769?page=com.atlassian.jira.plugi... ]
Brian Stansberry updated WFCORE-3769:
-------------------------------------
Description:
Create galleon feature packs, use them to produce the thin and fat dists and any 'dists' created for the testsuite.
Continue to produce a legacy core feature pack.
was:
Create galleon feature packs, use them to produce the thin and fat dists and any 'dists' created for the testsuite.
Continue to produce legacy feature packs.
> Use Galleon for the WildFly Core build
> --------------------------------------
>
> Key: WFCORE-3769
> URL: https://issues.jboss.org/browse/WFCORE-3769
> Project: WildFly Core
> Issue Type: Task
> Components: Server
> Reporter: Brian Stansberry
> Assignee: Alexey Loubyansky
>
> Create galleon feature packs, use them to produce the thin and fat dists and any 'dists' created for the testsuite.
> Continue to produce a legacy core feature pack.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (WFLY-10306) Use Galleon for the WildFly Core build
by Brian Stansberry (JIRA)
Brian Stansberry created WFLY-10306:
---------------------------------------
Summary: Use Galleon for the WildFly Core build
Key: WFLY-10306
URL: https://issues.jboss.org/browse/WFLY-10306
Project: WildFly
Issue Type: Task
Components: Build System
Reporter: Brian Stansberry
Assignee: Alexey Loubyansky
Create galleon feature packs, use them to produce the thin and fat dists and any 'dists' created for the testsuite.
Continue to produce legacy feature packs.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (WFLY-10305) Use Galleon for the WildFly build
by Brian Stansberry (JIRA)
Brian Stansberry created WFLY-10305:
---------------------------------------
Summary: Use Galleon for the WildFly build
Key: WFLY-10305
URL: https://issues.jboss.org/browse/WFLY-10305
Project: WildFly
Issue Type: Task
Components: Build System
Reporter: Brian Stansberry
Assignee: Alexey Loubyansky
Create galleon feature packs, use them to produce the thin and fat dists and any 'dists' created for the testsuite.
Continue to produce legacy feature packs.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years
[JBoss JIRA] (DROOLS-2502) Declare role event erase exists class
by Alexander Revkov (JIRA)
[ https://issues.jboss.org/browse/DROOLS-2502?page=com.atlassian.jira.plugi... ]
Alexander Revkov updated DROOLS-2502:
-------------------------------------
Steps to Reproduce:
I created a fact POJO in drools workbench.
Example:
{code:java}
public class MyFact1 {
private java.lang.String name;
public java.lang.String getName() {
return name;
}
public void setName(java.lang.String name) {
this.name=name;
}
}
public class MyFact2 {
private java.lang.String name;
public java.lang.String getName() {
return name;
}
public void setName(java.lang.String name) {
this.name=name;
}
}
{code}
then i define drl
{code:java}
packadge com.my.rules
rule "MyRule"
when
MyFact( )
then
MyFact2 fact2 = new MyFact2();
fact2.setName("blabla");
insert(fact2);
end
{code}
This is work fine.
But when i declare my classes as events:
{code:java}
packadge com.my.rules
declare Fact1
@role(event)
@expires(1d)
end
declare Fact2
@role(event)
@expires(1d)
end
rule "MyRule"
when
MyFact( )
then
MyFact2 fact2 = new MyFact2();
fact2.setName("blabla");
insert(fact2);
end
{code}
I get a UnhandledException: java.lang.NoSuchMethodError: com.my.rules.Fact2.setName(Ljava/lang/String;) in kie server logs.
Please fix it.
was:
I created a fact POJO in drools workbench.
Example:
{code:java}
public class MyFact1 {
private java.lang.String name;
public java.lang.String getName() {
return name;
}
public void setName(java.lang.String name) {
this.name=name;
}
}
public class MyFact2 {
private java.lang.String name;
public java.lang.String getName() {
return name;
}
public void setName(java.lang.String name) {
this.name=name;
}
}
{code}
then i define drl
{code:java}
packadge com.my.rules
rule "MyRule"
when
MyFact( )
then
MyFact2 fact2 = new MyFact2();
fact2.setName("blabla");
insert(fact2);
end
{code}
This is work fine.
But when i declare my classes as events:
{code:java}
packadge com.my.rules
declare Fact1
@role(event)
@expires(1d)
end
declare Fact2
@role(event)
@expires(1d)
end
rule "MyRule"
when
MyFact( )
then
MyFact2 fact2 = new MyFact2();
fact2.setName("blabla");
insert(fact2);
end
{code}
I get a UnhandledException: java.lang.NoSuchMethodError: com.my.rules.Fact2.setName(Ljava/lang/String;) in kie server logs.
Please fix it. Full project in attach
> Declare role event erase exists class
> -------------------------------------
>
> Key: DROOLS-2502
> URL: https://issues.jboss.org/browse/DROOLS-2502
> Project: Drools
> Issue Type: Bug
> Components: kie server
> Affects Versions: 6.5.0.Final
> Environment: Kie workbench + one kie execution server. Java 8. Statefull session. Stream mode.
> Reporter: Alexander Revkov
> Assignee: Edson Tirelli
>
> Declare @role(event) rewrite exists class in drools workbench and kie execution server.
> All methods are losts.
--
This message was sent by Atlassian JIRA
(v7.5.0#75005)
8 years