You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oodt.apache.org by "Paul Ramirez (JIRA)" <ji...@apache.org> on 2010/09/23 04:57:32 UTC

[jira] Created: (OODT-40) DataSourceCatalogFactory default validation layer class is incorrect

DataSourceCatalogFactory default validation layer class is incorrect
--------------------------------------------------------------------

                 Key: OODT-40
                 URL: https://issues.apache.org/jira/browse/OODT-40
             Project: OODT
          Issue Type: Bug
          Components: file manager
            Reporter: Paul Ramirez
             Fix For: 0.1-incubating



String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.validation.DataSourceValidationLayerFactory");

The default class does not exist. This should be updated to 

String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");

or 

String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory",org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory.class.getName());


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (OODT-40) DataSourceCatalogFactory default validation layer class is incorrect

Posted by "Paul Ramirez (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OODT-40?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Ramirez updated OODT-40:
-----------------------------

    Description: 
Currently the default class is chosen by the following:

String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.validation.DataSourceValidationLayerFactory");

The default class does not exist. This should be updated to:

String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");

or 

String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory",org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory.class.getName());


  was:

String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.validation.DataSourceValidationLayerFactory");

The default class does not exist. This should be updated to 

String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");

or 

String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory",org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory.class.getName());



Updated Description

> DataSourceCatalogFactory default validation layer class is incorrect
> --------------------------------------------------------------------
>
>                 Key: OODT-40
>                 URL: https://issues.apache.org/jira/browse/OODT-40
>             Project: OODT
>          Issue Type: Bug
>          Components: file manager
>            Reporter: Paul Ramirez
>             Fix For: 0.1-incubating
>
>
> Currently the default class is chosen by the following:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.validation.DataSourceValidationLayerFactory");
> The default class does not exist. This should be updated to:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");
> or 
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory",org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory.class.getName());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Reopened: (OODT-40) DataSourceCatalogFactory default validation layer class is incorrect

Posted by "Paul Ramirez (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OODT-40?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Ramirez reopened OODT-40:
------------------------------


The default construction of the validation layer also occurs in both constructors. Only in the one that takes a DataSource as a parameter does this problem occur.

> DataSourceCatalogFactory default validation layer class is incorrect
> --------------------------------------------------------------------
>
>                 Key: OODT-40
>                 URL: https://issues.apache.org/jira/browse/OODT-40
>             Project: OODT
>          Issue Type: Bug
>          Components: file manager
>            Reporter: Paul Ramirez
>            Assignee: Chris A. Mattmann
>             Fix For: 0.1-incubating
>
>
> Currently the default class is chosen by the following:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.validation.DataSourceValidationLayerFactory");
> The default class does not exist. This should be updated to:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");
> or 
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory",org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory.class.getName());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (OODT-40) DataSourceCatalogFactory default validation layer class is incorrect

Posted by "Chris A. Mattmann (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OODT-40?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chris A. Mattmann resolved OODT-40.
-----------------------------------

    Resolution: Won't Fix

line 81 in o.a.oodt.cas.filemgr.catalog.DataSourceCatalogFactory shows this line:

        String validationLayerFactoryClass = System
                .getProperty("filemgr.validationLayer.factory",
                        "org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");

That property looks correct to me?

> DataSourceCatalogFactory default validation layer class is incorrect
> --------------------------------------------------------------------
>
>                 Key: OODT-40
>                 URL: https://issues.apache.org/jira/browse/OODT-40
>             Project: OODT
>          Issue Type: Bug
>          Components: file manager
>            Reporter: Paul Ramirez
>            Assignee: Chris A. Mattmann
>             Fix For: 0.1-incubating
>
>
> Currently the default class is chosen by the following:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.validation.DataSourceValidationLayerFactory");
> The default class does not exist. This should be updated to:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");
> or 
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory",org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory.class.getName());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OODT-40) DataSourceCatalogFactory default validation layer class is incorrect

Posted by "Chris A. Mattmann (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OODT-40?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12914122#action_12914122 ] 

Chris A. Mattmann commented on OODT-40:
---------------------------------------

Yep, saw it. Will fix that part too.

> DataSourceCatalogFactory default validation layer class is incorrect
> --------------------------------------------------------------------
>
>                 Key: OODT-40
>                 URL: https://issues.apache.org/jira/browse/OODT-40
>             Project: OODT
>          Issue Type: Bug
>          Components: file manager
>            Reporter: Paul Ramirez
>            Assignee: Chris A. Mattmann
>             Fix For: 0.1-incubating
>
>
> Currently the default class is chosen by the following:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.validation.DataSourceValidationLayerFactory");
> The default class does not exist. This should be updated to:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");
> or 
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory",org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory.class.getName());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (OODT-40) DataSourceCatalogFactory default validation layer class is incorrect

Posted by "Chris A. Mattmann (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OODT-40?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chris A. Mattmann reassigned OODT-40:
-------------------------------------

    Assignee: Chris A. Mattmann

> DataSourceCatalogFactory default validation layer class is incorrect
> --------------------------------------------------------------------
>
>                 Key: OODT-40
>                 URL: https://issues.apache.org/jira/browse/OODT-40
>             Project: OODT
>          Issue Type: Bug
>          Components: file manager
>            Reporter: Paul Ramirez
>            Assignee: Chris A. Mattmann
>             Fix For: 0.1-incubating
>
>
> Currently the default class is chosen by the following:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.validation.DataSourceValidationLayerFactory");
> The default class does not exist. This should be updated to:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");
> or 
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory",org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory.class.getName());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (OODT-40) DataSourceCatalogFactory default validation layer class is incorrect

Posted by "Chris A. Mattmann (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OODT-40?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Chris A. Mattmann resolved OODT-40.
-----------------------------------

    Resolution: Fixed

- fixed in r1000558. Thanks, Paul!

> DataSourceCatalogFactory default validation layer class is incorrect
> --------------------------------------------------------------------
>
>                 Key: OODT-40
>                 URL: https://issues.apache.org/jira/browse/OODT-40
>             Project: OODT
>          Issue Type: Bug
>          Components: file manager
>            Reporter: Paul Ramirez
>            Assignee: Chris A. Mattmann
>             Fix For: 0.1-incubating
>
>
> Currently the default class is chosen by the following:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.validation.DataSourceValidationLayerFactory");
> The default class does not exist. This should be updated to:
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory","org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory");
> or 
> String validationLayerFactoryClass = System.getProperty("filemgr.validationLayer.factory",org.apache.oodt.cas.filemgr.validation.DataSourceValidationLayerFactory.class.getName());

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.