[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948185#comment-16948185
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit ac57daaa41f353cfd9cef737d071f72acb6a2c23 in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=ac57daa ]

ISIS-2158: fixes ServiceInjector not honoring @Primary

- instance equality checks seem to require the @Primary constant in
_Constants to be picked up via reflection instead of providing a newed
up one

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2062) Convert website to use Antora

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948051#comment-16948051
 ] 

ASF subversion and git services commented on ISIS-2062:
---

Commit d920556850bc449b340526cab998605110af3b3b in isis's branch refs/heads/v2 
from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=d920556 ]

ISIS-2062: refactors sec guide to use distributed component

and simplifies module names


> Convert website to use Antora
> -
>
> Key: ISIS-2062
> URL: https://issues.apache.org/jira/browse/ISIS-2062
> Project: Isis
>  Issue Type: Improvement
>Reporter: Daniel Keir Haywood
>Assignee: Daniel Keir Haywood
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2062) Convert website to use Antora

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948049#comment-16948049
 ] 

ASF subversion and git services commented on ISIS-2062:
---

Commit a707a03f963c6aff8e53896a918c10a167bc648b in isis's branch refs/heads/v2 
from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=a707a03 ]

ISIS-2062: reorg security guide to use distributed component pattern


> Convert website to use Antora
> -
>
> Key: ISIS-2062
> URL: https://issues.apache.org/jira/browse/ISIS-2062
> Project: Isis
>  Issue Type: Improvement
>Reporter: Daniel Keir Haywood
>Assignee: Daniel Keir Haywood
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-1998) Simplify syntax way for mixins, to better express intent using @Action, @Collection and @Property

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-1998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948048#comment-16948048
 ] 

ASF subversion and git services commented on ISIS-1998:
---

Commit 9fd8bb9ea7a35746d11026103878908ac46006de in isis's branch 
refs/heads/ISIS-2062 from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=9fd8bb9 ]

ISIS-1998: uses memberOrder constant for Persistable_ mixins


> Simplify syntax way for mixins, to better express intent using @Action, 
> @Collection and @Property
> -
>
> Key: ISIS-1998
> URL: https://issues.apache.org/jira/browse/ISIS-1998
> Project: Isis
>  Issue Type: New Feature
>Affects Versions: 1.16.2
>Reporter: Daniel Keir Haywood
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>
> For regular action mixins, we currently write:
>  {code}
> @Mixin(method="act")
> public class Contributee_someAction() {
>     private final Contributee contributee;  // constructor omitted
> @Action(...)
> @ActionLayout(...)
> public ReturnValue act( ) { ... }
> }
> {code}
> instead, the proposal is:
> {code}
> @Action(...)  // presence of Action on class implies this is a 
> mixin; 
> @ActionLayout(...)
> public class Contributee_someAction() {
> private final Contributee contributee;
> public ReturnValue act( ... ) { ... }   // no need for annotations here.  
>  "act" assumed
> }
> {code}
> The details of the @Action and @ActionLayout facets are "copied" down to the 
> "act" method.
> for properties, we currently write:
> {code}
> @Mixin(method="prop")
> public class Contributee_someProperty() {
>     private final Contributee contributee;  
> @Action(semantics=SAFE)   // required
> @ActionLayout(contributed=ASSOCIATION)  // required
> @Property(...)
> @PropertyLayout(...)
> public ReturnValue prop( /* no args */ ) { ... }
> }
> {code}
> instead we'd rather write:
> {code}
> @Property(...) // implies this class is a mixin
> @PropertyLayout(...)
> public class Contributee_someProperty()
> private final Contributee contributee;
> public ReturnValue prop() { ... }// "prop" is assumed
> }
> {code}
> The boilerplate (and confusing) @Action(SAFE) and 
> @ActionLayout(AS_ASSOCIATION) are implied.  The facets from @Property and 
> @PropertyLayout are copied down to the "prop" method
> And finally, for collections, we currently write:
> {code}
> @Mixin(method="coll")
> public class Contributee_someCollection() {
>     private final Contributee contributee;  
> @Action(semantics=SAFE)   // required
> @ActionLayout(contributed=ASSOCIATION)  // required
> @Collection(...)
> @CollectionLayout(...)
> public List coll( /* no args */ ) { ... }
> }
> {code}
> instead we'd rather write:
> {code}
> @Collection(...) // implies this class is a mixin
> @CollectionLayout(...)
> public class Contributee_someCollection()
> private final Contributee contributee;
> public List coll() { ... }// "coll" is 
> assumed
> }
> {code}
> similar to properties.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-1998) Simplify syntax way for mixins, to better express intent using @Action, @Collection and @Property

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-1998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948053#comment-16948053
 ] 

ASF subversion and git services commented on ISIS-1998:
---

Commit 9fd8bb9ea7a35746d11026103878908ac46006de in isis's branch refs/heads/v2 
from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=9fd8bb9 ]

ISIS-1998: uses memberOrder constant for Persistable_ mixins


> Simplify syntax way for mixins, to better express intent using @Action, 
> @Collection and @Property
> -
>
> Key: ISIS-1998
> URL: https://issues.apache.org/jira/browse/ISIS-1998
> Project: Isis
>  Issue Type: New Feature
>Affects Versions: 1.16.2
>Reporter: Daniel Keir Haywood
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>
> For regular action mixins, we currently write:
>  {code}
> @Mixin(method="act")
> public class Contributee_someAction() {
>     private final Contributee contributee;  // constructor omitted
> @Action(...)
> @ActionLayout(...)
> public ReturnValue act( ) { ... }
> }
> {code}
> instead, the proposal is:
> {code}
> @Action(...)  // presence of Action on class implies this is a 
> mixin; 
> @ActionLayout(...)
> public class Contributee_someAction() {
> private final Contributee contributee;
> public ReturnValue act( ... ) { ... }   // no need for annotations here.  
>  "act" assumed
> }
> {code}
> The details of the @Action and @ActionLayout facets are "copied" down to the 
> "act" method.
> for properties, we currently write:
> {code}
> @Mixin(method="prop")
> public class Contributee_someProperty() {
>     private final Contributee contributee;  
> @Action(semantics=SAFE)   // required
> @ActionLayout(contributed=ASSOCIATION)  // required
> @Property(...)
> @PropertyLayout(...)
> public ReturnValue prop( /* no args */ ) { ... }
> }
> {code}
> instead we'd rather write:
> {code}
> @Property(...) // implies this class is a mixin
> @PropertyLayout(...)
> public class Contributee_someProperty()
> private final Contributee contributee;
> public ReturnValue prop() { ... }// "prop" is assumed
> }
> {code}
> The boilerplate (and confusing) @Action(SAFE) and 
> @ActionLayout(AS_ASSOCIATION) are implied.  The facets from @Property and 
> @PropertyLayout are copied down to the "prop" method
> And finally, for collections, we currently write:
> {code}
> @Mixin(method="coll")
> public class Contributee_someCollection() {
>     private final Contributee contributee;  
> @Action(semantics=SAFE)   // required
> @ActionLayout(contributed=ASSOCIATION)  // required
> @Collection(...)
> @CollectionLayout(...)
> public List coll( /* no args */ ) { ... }
> }
> {code}
> instead we'd rather write:
> {code}
> @Collection(...) // implies this class is a mixin
> @CollectionLayout(...)
> public class Contributee_someCollection()
> private final Contributee contributee;
> public List coll() { ... }// "coll" is 
> assumed
> }
> {code}
> similar to properties.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2062) Convert website to use Antora

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948050#comment-16948050
 ] 

ASF subversion and git services commented on ISIS-2062:
---

Commit df73c1cc33c0bde990b6e73625fc6be62f5c44a1 in isis's branch refs/heads/v2 
from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=df73c1c ]

ISIS-2062: refactors ext-secman to distributed component pattern


> Convert website to use Antora
> -
>
> Key: ISIS-2062
> URL: https://issues.apache.org/jira/browse/ISIS-2062
> Project: Isis
>  Issue Type: Improvement
>Reporter: Daniel Keir Haywood
>Assignee: Daniel Keir Haywood
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2062) Convert website to use Antora

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948052#comment-16948052
 ] 

ASF subversion and git services commented on ISIS-2062:
---

Commit e2ef9c46edd51a5e01a34ccb1cc66a68c03dc5a8 in isis's branch refs/heads/v2 
from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=e2ef9c4 ]

ISIS-2062: adds script to generate .adoc from spring config metadata


> Convert website to use Antora
> -
>
> Key: ISIS-2062
> URL: https://issues.apache.org/jira/browse/ISIS-2062
> Project: Isis
>  Issue Type: Improvement
>Reporter: Daniel Keir Haywood
>Assignee: Daniel Keir Haywood
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2062) Convert website to use Antora

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948041#comment-16948041
 ] 

ASF subversion and git services commented on ISIS-2062:
---

Commit df73c1cc33c0bde990b6e73625fc6be62f5c44a1 in isis's branch 
refs/heads/ISIS-2062 from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=df73c1c ]

ISIS-2062: refactors ext-secman to distributed component pattern


> Convert website to use Antora
> -
>
> Key: ISIS-2062
> URL: https://issues.apache.org/jira/browse/ISIS-2062
> Project: Isis
>  Issue Type: Improvement
>Reporter: Daniel Keir Haywood
>Assignee: Daniel Keir Haywood
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948037#comment-16948037
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit b43139712dca0e209a1ece5d85cd9b48fd39bcca in isis's branch 
refs/heads/ISIS-2062 from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=b431397 ]

ISIS-2158: fixing tests

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2062) Convert website to use Antora

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948042#comment-16948042
 ] 

ASF subversion and git services commented on ISIS-2062:
---

Commit d920556850bc449b340526cab998605110af3b3b in isis's branch 
refs/heads/ISIS-2062 from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=d920556 ]

ISIS-2062: refactors sec guide to use distributed component

and simplifies module names


> Convert website to use Antora
> -
>
> Key: ISIS-2062
> URL: https://issues.apache.org/jira/browse/ISIS-2062
> Project: Isis
>  Issue Type: Improvement
>Reporter: Daniel Keir Haywood
>Assignee: Daniel Keir Haywood
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2062) Convert website to use Antora

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948040#comment-16948040
 ] 

ASF subversion and git services commented on ISIS-2062:
---

Commit a707a03f963c6aff8e53896a918c10a167bc648b in isis's branch 
refs/heads/ISIS-2062 from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=a707a03 ]

ISIS-2062: reorg security guide to use distributed component pattern


> Convert website to use Antora
> -
>
> Key: ISIS-2062
> URL: https://issues.apache.org/jira/browse/ISIS-2062
> Project: Isis
>  Issue Type: Improvement
>Reporter: Daniel Keir Haywood
>Assignee: Daniel Keir Haywood
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948038#comment-16948038
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 99b1f594761b1c9f6e32b063f6dd7136700e4195 in isis's branch 
refs/heads/ISIS-2062 from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=99b1f59 ]

ISIS-2158: polishing SpecificationLoader interface

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2062) Convert website to use Antora

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2062?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948043#comment-16948043
 ] 

ASF subversion and git services commented on ISIS-2062:
---

Commit e2ef9c46edd51a5e01a34ccb1cc66a68c03dc5a8 in isis's branch 
refs/heads/ISIS-2062 from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=e2ef9c4 ]

ISIS-2062: adds script to generate .adoc from spring config metadata


> Convert website to use Antora
> -
>
> Key: ISIS-2062
> URL: https://issues.apache.org/jira/browse/ISIS-2062
> Project: Isis
>  Issue Type: Improvement
>Reporter: Daniel Keir Haywood
>Assignee: Daniel Keir Haywood
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948034#comment-16948034
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 554c93f85b628755e9e63bbb6e57fb54cb71780d in isis's branch 
refs/heads/ISIS-2062 from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=554c93f ]

ISIS-2158: polish meta-model life cycle

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948036#comment-16948036
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 09bd3d7e352869a6d01834a599e7608c3ca17874 in isis's branch 
refs/heads/ISIS-2062 from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=09bd3d7 ]

ISIS-2158: revert FacetAbstract temp. changes to previous version

- OpenJDK 11 build fails on this class - no idea why

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948039#comment-16948039
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 04f04859c68a5f7f8db1bd01ba7341d6a3ff4222 in isis's branch 
refs/heads/ISIS-2062 from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=04f0485 ]

ISIS-2158: extend spec-loading, also allow for concurrent validation

- as an optimization step we also introduced a new highly specialized
List type '_VersionedList'
- _VersionedList allows to iterate over its elements while concurrently
adding elements to the list
- we have a special traversal function 'forEach(element)' that very fast
traverses all elements even those that get added during traversal

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16948035#comment-16948035
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 175dd48e1433e309eff73e375b972e758bff8a63 in isis's branch 
refs/heads/ISIS-2062 from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=175dd48 ]

ISIS-2158: introduces a DeficiencyFacet

- facets of this particular type do now get added directly to the
meta-model during validation; these are specifically added to the
facet-holder, that is considered responsible for the failure
- this automatically allows for the meta-model export to also include
deficiency facets, explaining what's going wrong, right at the place
where they originate from


> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947957#comment-16947957
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 04f04859c68a5f7f8db1bd01ba7341d6a3ff4222 in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=04f0485 ]

ISIS-2158: extend spec-loading, also allow for concurrent validation

- as an optimization step we also introduced a new highly specialized
List type '_VersionedList'
- _VersionedList allows to iterate over its elements while concurrently
adding elements to the list
- we have a special traversal function 'forEach(element)' that very fast
traverses all elements even those that get added during traversal

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947812#comment-16947812
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 99b1f594761b1c9f6e32b063f6dd7136700e4195 in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=99b1f59 ]

ISIS-2158: polishing SpecificationLoader interface

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947773#comment-16947773
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit b43139712dca0e209a1ece5d85cd9b48fd39bcca in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=b431397 ]

ISIS-2158: fixing tests

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947728#comment-16947728
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 09bd3d7e352869a6d01834a599e7608c3ca17874 in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=09bd3d7 ]

ISIS-2158: revert FacetAbstract temp. changes to previous version

- OpenJDK 11 build fails on this class - no idea why

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947722#comment-16947722
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 175dd48e1433e309eff73e375b972e758bff8a63 in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=175dd48 ]

ISIS-2158: introduces a DeficiencyFacet

- facets of this particular type do now get added directly to the
meta-model during validation; these are specifically added to the
facet-holder, that is considered responsible for the failure
- this automatically allows for the meta-model export to also include
deficiency facets, explaining what's going wrong, right at the place
where they originate from


> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947720#comment-16947720
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit f25cb886a65f86f79bdad11aab0ff34025409756 in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=f25cb88 ]

ISIS-2158: moving unreferenced classes to 'legacy'

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947718#comment-16947718
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit f5df31c46f90a405345c544b371ed36d2850 in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=f5df377 ]

ISIS-2158: move ObjectFactory -> 'legacy'

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947721#comment-16947721
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 554c93f85b628755e9e63bbb6e57fb54cb71780d in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=554c93f ]

ISIS-2158: polish meta-model life cycle

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947402#comment-16947402
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit dfb0429f790ba6e1455c776b2642d1326fb44a93 in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=dfb0429 ]

ISIS-2158: move jdo query specific api to 'jdo-common'

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (ISIS-2158) Miscellaneous tasks in preparation of Version 2

2019-10-09 Thread ASF subversion and git services (Jira)


[ 
https://issues.apache.org/jira/browse/ISIS-2158?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16947400#comment-16947400
 ] 

ASF subversion and git services commented on ISIS-2158:
---

Commit 1f25fb41653be024b24b63e5818f0ce4dc80d79a in isis's branch refs/heads/v2 
from Andi Huber
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=1f25fb4 ]

ISIS-2158: consolidate all jdo programming model refiners

- also renames some classes in 'jdo-common' -> IsisXxxJdo

> Miscellaneous tasks in preparation of Version 2
> ---
>
> Key: ISIS-2158
> URL: https://issues.apache.org/jira/browse/ISIS-2158
> Project: Isis
>  Issue Type: Task
>Reporter: Andi Huber
>Assignee: Andi Huber
>Priority: Major
> Fix For: 2.0.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)