[JBoss JIRA] (JBIDE-19410) earlyaccess still not failing gracefully
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19410?page=com.atlassian.jira.plugi... ]
Denis Golovin edited comment on JBIDE-19410 at 4/9/15 6:29 PM:
---------------------------------------------------------------
[~mickael_istria], it fixes the issue.
Exception is reported in error log view only for in Central the same was as it was for NPE. In Installation details it shows error message below description text.
But still error messages are still confusing sometimes, like this one: "Problems occurred while performing installation: Profile id _SELF_ is not registered.
Profile id _SELF_ is not registered.". Which tells nothing from user perspective :) But that is a different issue I guess.
was (Author: dgolovin):
[~mickael_istria], it fixes the issue.
Exception is reported in error log view only for in Central the same was as it was for NPE. In Installation details it shows error message below description text.
Put still error messages are still confusing sometimes, like this one: "Problems occurred while performing installation: Profile id _SELF_ is not registered.
Profile id _SELF_ is not registered.". Which tells nothing from user perspective :) But that is a different issue I guess.
> earlyaccess still not failing gracefully
> ----------------------------------------
>
> Key: JBIDE-19410
> URL: https://issues.jboss.org/browse/JBIDE-19410
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: central
> Reporter: Max Rydahl Andersen
> Assignee: Mickael Istria
> Priority: Minor
> Fix For: 4.3.0.Alpha2
>
>
> start jboss tools in PDE and earlyaccess will pop up with error dialog that it had an error because it could not install things (which is expected when running in PDE)
> start jboss tools without network access and I sometime see it pop up - can't reprouce that consistently.
> but in short - seems like earlyaccess continues to want to tell users that something is wrong with early access even when it is not enabled but nor should it even if enabled. Show such error on the earlyaccess page rather than a blocking dialog.
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months
[JBoss JIRA] (JBTIS-423) Duplicate category id 'com.jboss.jbds.central.discovery.integration-stack.bundle'
by Paul Leacu (JIRA)
[ https://issues.jboss.org/browse/JBTIS-423?page=com.atlassian.jira.plugin.... ]
Paul Leacu reassigned JBTIS-423:
--------------------------------
Assignee: Paul Leacu
> Duplicate category id 'com.jboss.jbds.central.discovery.integration-stack.bundle'
> ---------------------------------------------------------------------------------
>
> Key: JBTIS-423
> URL: https://issues.jboss.org/browse/JBTIS-423
> Project: JBoss Tools Integration Stack
> Issue Type: Bug
> Components: distribution
> Affects Versions: 8.0.1.GA
> Environment: JBDS 8.1.0.GA
> Reporter: Andrej Podhradsky
> Assignee: Paul Leacu
> Priority: Minor
>
> When we try to install to install JBDS-IS 8.0.1.GA from JBoss Central we cann see the following error in Error Log
> {code}
> Duplicate category id 'com.jboss.jbds.central.discovery.integration-stack.bundle': declaring sources:
> com.jboss.jbds.central.discovery.integration_stack_8.0.1.GA_v20150408_1203_B104.jar_3208083343377093610.jar,
> com.jboss.jbds.central.discovery.integration_stack.earlyaccess_8.0.1.GA_v20150408_1203_B104.jar_2051386990248092532.jar
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months
[JBoss JIRA] (JBIDE-19507) Search and rename participants for Batch Artifacts
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19507?page=com.atlassian.jira.plugi... ]
Daniel Azarov updated JBIDE-19507:
----------------------------------
Description:
*Search Participant*
1. Should be able to find references in job.xml files for Batch Artifact Class IType
Example:
During the search for references for class "SearchableBatchlet" like:
{code}
package batch;
import javax.batch.api.BatchProperty;
import javax.batch.api.Batchlet;
import javax.inject.Inject;
import javax.inject.Named;
@Named
public class SearchableBatchlet implements Batchlet {
@Inject @BatchProperty(name="secondName") String otherName;
@Override
public String process() throws Exception {
return null;
}
@Override
public void stop() throws Exception {
}
}
{code}
In the search result should be added references in jbob.xml files like this:
!SearchableBatchletReferences.png!
2. Should be able to find references in job.xml files for Batch Artifact Property IField
Example:
During the search for references for field "otherName" of class "SearchableBatchlet" in the search result should be added references in jbob.xml files like this:
!FieldReference.png!
3. Should be able to find references in job.xml files for Exception Class IType
Example:
During the search for references for class "SearchableException" like:
{code}
package batch;
public class SearchableException extends Exception{
private static final long serialVersionUID = 1L;
}
{code}
In the search result should be added references in jbob.xml files like this:
!SearchableExceptionReferences.png!
*Rename Participant*
1. Should be able to add changes in Batch Artifact Class Rename for references in job.xml files.
Note: Rename Participant does make sense only for Batch Artifacts which name comes from Java Class Name, not from annotation @Named
Example:
During rename of class "SearchableBatchlet" changes for job.xml references should be added in Refactoring:
!BatchArtifactRename.png!
2. Should be able to add changes in Batch Property Rename for references in job.xml files.
Note: Rename Participant does make sense only for Batch Properties which name comes from Java Field Name, not from annotation @BatchProperty
Example:
{code}
package batch;
import javax.batch.api.BatchProperty;
import javax.batch.api.Batchlet;
import javax.inject.Inject;
import javax.inject.Named;
@Named
public class RenamablePropertyBatchlet implements Batchlet {
@Inject @BatchProperty String otherName;
@Override
public String process() throws Exception {
return null;
}
@Override
public void stop() throws Exception {
}
}
{code}
During rename of field "otherName" changes for job.xml references should be added in Refactoring:
!PropertyRename.png!
3. Should be able to add changes in Exception Class Rename for references in job.xml files.
Example:
During rename of class "SearchableException" changes for job.xml references should be added in Refactoring:
!ExceptionRename.png!
was:
*Search Participant*
1. Should be able to find references in job.xml files for Batch Artifact Class IType
Example:
During the search for references for class "SearchableBatchlet" like:
{code}
package batch;
import javax.batch.api.BatchProperty;
import javax.batch.api.Batchlet;
import javax.inject.Inject;
import javax.inject.Named;
@Named
public class SearchableBatchlet implements Batchlet {
@Inject @BatchProperty(name="secondName") String otherName;
@Override
public String process() throws Exception {
return null;
}
@Override
public void stop() throws Exception {
}
}
{code}
In the search result should be added references in jbob.xml files like this:
!SearchableBatchletReferences.png!
2. Should be able to find references in job.xml files for Batch Artifact Property IField
Example:
During the search for references for field "otherName" of class "SearchableBatchlet" in the search result should be added references in jbob.xml files like this:
!FieldReference.png!
3. Should be able to find references in job.xml files for Exception Class IType
Example:
During the search for references for class "SearchableException" like:
{code}
package batch;
public class SearchableException extends Exception{
private static final long serialVersionUID = 1L;
}
{code}
In the search result should be added references in jbob.xml files like this:
!SearchableExceptionReferences.png!
*Rename Participant*
1. Should be able to add changes in Batch Artifact Class Rename for references in job.xml files.
Note: Rename Participant does make sense only for Batch Artifacts which name comes from Java Class Name, not from annotation @Named
Example:
During rename of class "SearchableBatchlet" changes for job.xml references should be added in Refactoring:
!BatchArtifactRename.png!
2. Should be able to add changes in Exception Class Rename for references in job.xml files.
Example:
During rename of class "SearchableException" changes for job.xml references should be added in Refactoring:
!ExceptionRename.png!
> Search and rename participants for Batch Artifacts
> --------------------------------------------------
>
> Key: JBIDE-19507
> URL: https://issues.jboss.org/browse/JBIDE-19507
> Project: Tools (JBoss Tools)
> Issue Type: Sub-task
> Components: batch
> Reporter: Daniel Azarov
> Assignee: Daniel Azarov
> Labels: new_and_noteworthy
> Fix For: 4.3.0.Alpha2
>
> Attachments: BatchArtifactRename.png, ExceptionRename.png, FieldReference.png, PropertyRename.png, SearchableBatchletReferences.png, SearchableExceptionReferences.png
>
>
> *Search Participant*
> 1. Should be able to find references in job.xml files for Batch Artifact Class IType
> Example:
> During the search for references for class "SearchableBatchlet" like:
> {code}
> package batch;
> import javax.batch.api.BatchProperty;
> import javax.batch.api.Batchlet;
> import javax.inject.Inject;
> import javax.inject.Named;
> @Named
> public class SearchableBatchlet implements Batchlet {
>
> @Inject @BatchProperty(name="secondName") String otherName;
> @Override
> public String process() throws Exception {
> return null;
> }
> @Override
> public void stop() throws Exception {
> }
> }
> {code}
> In the search result should be added references in jbob.xml files like this:
> !SearchableBatchletReferences.png!
> 2. Should be able to find references in job.xml files for Batch Artifact Property IField
> Example:
> During the search for references for field "otherName" of class "SearchableBatchlet" in the search result should be added references in jbob.xml files like this:
> !FieldReference.png!
> 3. Should be able to find references in job.xml files for Exception Class IType
> Example:
> During the search for references for class "SearchableException" like:
> {code}
> package batch;
> public class SearchableException extends Exception{
> private static final long serialVersionUID = 1L;
> }
> {code}
> In the search result should be added references in jbob.xml files like this:
> !SearchableExceptionReferences.png!
> *Rename Participant*
> 1. Should be able to add changes in Batch Artifact Class Rename for references in job.xml files.
> Note: Rename Participant does make sense only for Batch Artifacts which name comes from Java Class Name, not from annotation @Named
> Example:
> During rename of class "SearchableBatchlet" changes for job.xml references should be added in Refactoring:
> !BatchArtifactRename.png!
> 2. Should be able to add changes in Batch Property Rename for references in job.xml files.
> Note: Rename Participant does make sense only for Batch Properties which name comes from Java Field Name, not from annotation @BatchProperty
> Example:
> {code}
> package batch;
> import javax.batch.api.BatchProperty;
> import javax.batch.api.Batchlet;
> import javax.inject.Inject;
> import javax.inject.Named;
> @Named
> public class RenamablePropertyBatchlet implements Batchlet {
>
> @Inject @BatchProperty String otherName;
> @Override
> public String process() throws Exception {
> return null;
> }
> @Override
> public void stop() throws Exception {
> }
> }
> {code}
> During rename of field "otherName" changes for job.xml references should be added in Refactoring:
> !PropertyRename.png!
> 3. Should be able to add changes in Exception Class Rename for references in job.xml files.
> Example:
> During rename of class "SearchableException" changes for job.xml references should be added in Refactoring:
> !ExceptionRename.png!
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months
[JBoss JIRA] (JBIDE-19507) Search and rename participants for Batch Artifacts
by Daniel Azarov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19507?page=com.atlassian.jira.plugi... ]
Daniel Azarov updated JBIDE-19507:
----------------------------------
Attachment: PropertyRename.png
> Search and rename participants for Batch Artifacts
> --------------------------------------------------
>
> Key: JBIDE-19507
> URL: https://issues.jboss.org/browse/JBIDE-19507
> Project: Tools (JBoss Tools)
> Issue Type: Sub-task
> Components: batch
> Reporter: Daniel Azarov
> Assignee: Daniel Azarov
> Labels: new_and_noteworthy
> Fix For: 4.3.0.Alpha2
>
> Attachments: BatchArtifactRename.png, ExceptionRename.png, FieldReference.png, PropertyRename.png, SearchableBatchletReferences.png, SearchableExceptionReferences.png
>
>
> *Search Participant*
> 1. Should be able to find references in job.xml files for Batch Artifact Class IType
> Example:
> During the search for references for class "SearchableBatchlet" like:
> {code}
> package batch;
> import javax.batch.api.BatchProperty;
> import javax.batch.api.Batchlet;
> import javax.inject.Inject;
> import javax.inject.Named;
> @Named
> public class SearchableBatchlet implements Batchlet {
>
> @Inject @BatchProperty(name="secondName") String otherName;
> @Override
> public String process() throws Exception {
> return null;
> }
> @Override
> public void stop() throws Exception {
> }
> }
> {code}
> In the search result should be added references in jbob.xml files like this:
> !SearchableBatchletReferences.png!
> 2. Should be able to find references in job.xml files for Batch Artifact Property IField
> Example:
> During the search for references for field "otherName" of class "SearchableBatchlet" in the search result should be added references in jbob.xml files like this:
> !FieldReference.png!
> 3. Should be able to find references in job.xml files for Exception Class IType
> Example:
> During the search for references for class "SearchableException" like:
> {code}
> package batch;
> public class SearchableException extends Exception{
> private static final long serialVersionUID = 1L;
> }
> {code}
> In the search result should be added references in jbob.xml files like this:
> !SearchableExceptionReferences.png!
> *Rename Participant*
> 1. Should be able to add changes in Batch Artifact Class Rename for references in job.xml files.
> Note: Rename Participant does make sense only for Batch Artifacts which name comes from Java Class Name, not from annotation @Named
> Example:
> During rename of class "SearchableBatchlet" changes for job.xml references should be added in Refactoring:
> !BatchArtifactRename.png!
> 2. Should be able to add changes in Exception Class Rename for references in job.xml files.
> Example:
> During rename of class "SearchableException" changes for job.xml references should be added in Refactoring:
> !ExceptionRename.png!
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months
[JBoss JIRA] (JBIDE-19402) should get other product/community runtimes made available from download runtimes
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19402?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-19402:
-------------------------------------
I've made a subtask + PR to get FSW 6.0 added to stacks for download.
DV, however, is another issue entirely. Our code currently 'installs' a runtime by unzipping it. We do not have API for alternate methods of install. DV is provided only via an installer jar, which, when unzipped, has a very incorrect structure. It must be installed via the installer, ie, via a java -jar command.
This would require API changes to our wizard, and possibly to the DownloadRuntime objects themselves. Most likely I'd need to add another property for installation method (extract, jarInstall, etc). I could also conceivably provide an extension point for the extraction method, in case other runtimes have yet even more unique installation methods (or perhaps even a completely custom logic for remote installation or some such).
I'll investigate it further.
> should get other product/community runtimes made available from download runtimes
> ---------------------------------------------------------------------------------
>
> Key: JBIDE-19402
> URL: https://issues.jboss.org/browse/JBIDE-19402
> Project: Tools (JBoss Tools)
> Issue Type: Task
> Components: runtime-detection, server
> Reporter: Max Rydahl Andersen
> Assignee: Rob Stryker
>
> Teiid, Fuse, SOA-P etc. runtimes would make sense to have available via download runtimes.
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
11 years, 3 months