[jbossws-issues] [JBoss JIRA] Created: (JBWS-1358) JAXWSDeployerJSE has hard-coded relativeOrder

Scott M Stark (JIRA) jira-events at jboss.com
Sun Nov 12 12:51:41 EST 2006


JAXWSDeployerJSE has hard-coded relativeOrder
---------------------------------------------

                 Key: JBWS-1358
                 URL: http://jira.jboss.com/jira/browse/JBWS-1358
             Project: JBoss Web Services
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: jaxws
    Affects Versions:  jbossws-2.0.0.CR2
            Reporter: Scott M Stark


The JAXWSDeployerJSE currently has a hard-coded relative order value:

   // The default relative order after the JBossWebAppParsingDeployer
   public int getRelativeOrder()
   {
      return PARSER_DEPLOYER + 3;
   }

This needs to be changed to:

   public JAXWSDeployerJSE()
   {
      // Set the default relative order
      setRelativeOrder(...);
   }

The PARSER_DEPLOYER + 3 as a default is also incorrect, but just allowing the relativeOrder to be externalized is enough for now.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jbossws-issues mailing list