Author: mattmann
Date: Mon Jul 12 17:57:31 2010
New Revision: 963405
URL: http://svn.apache.org/viewvc?rev=963405&view=rev
Log:
- progress towards OODT-15 One trunk for all OODT components with top level
build
Modified:
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogDictionaryException.java
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogException.java
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogIndexException.java
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogRepositoryException.java
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogServiceException.java
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/IngestServiceException.java
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/QueryServiceException.java
Modified:
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogDictionaryException.java
URL:
http://svn.apache.org/viewvc/incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogDictionaryException.java?rev=963405&r1=963404&r2=963405&view=diff
==============================================================================
---
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogDictionaryException.java
(original)
+++
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogDictionaryException.java
Mon Jul 12 17:57:31 2010
@@ -1,4 +1,4 @@
-/*
+/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
@@ -18,24 +18,24 @@
package org.apache.oodt.cas.catalog.exception;
/**
- * @author bfoster
- * @version $Revision$
+ *
+ * Describe your class here.
*
*/
public class CatalogDictionaryException extends Exception {
- private static final long serialVersionUID = 7734987410778199955L;
+ private static final long serialVersionUID = 7734987410778199955L;
+
+ public CatalogDictionaryException() {
+ super();
+ }
+
+ public CatalogDictionaryException(String msg) {
+ super(msg);
+ }
+
+ public CatalogDictionaryException(String msg, Throwable throwable) {
+ super(msg, throwable);
+ }
- public CatalogDictionaryException() {
- super();
- }
-
- public CatalogDictionaryException(String msg) {
- super(msg);
- }
-
- public CatalogDictionaryException(String msg, Throwable throwable) {
- super(msg, throwable);
- }
-
}
Modified:
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogException.java
URL:
http://svn.apache.org/viewvc/incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogException.java?rev=963405&r1=963404&r2=963405&view=diff
==============================================================================
---
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogException.java
(original)
+++
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogException.java
Mon Jul 12 17:57:31 2010
@@ -1,4 +1,4 @@
-/*
+/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
@@ -18,24 +18,24 @@
package org.apache.oodt.cas.catalog.exception;
/**
- * @author bfoster
- * @version $Revision$
+ *
+ * Describe your class here.
*
*/
public class CatalogException extends Exception {
- private static final long serialVersionUID = 7734987410778199955L;
+ private static final long serialVersionUID = 7734987410778199955L;
+
+ public CatalogException() {
+ super();
+ }
+
+ public CatalogException(String msg) {
+ super(msg);
+ }
+
+ public CatalogException(String msg, Throwable throwable) {
+ super(msg, throwable);
+ }
- public CatalogException() {
- super();
- }
-
- public CatalogException(String msg) {
- super(msg);
- }
-
- public CatalogException(String msg, Throwable throwable) {
- super(msg, throwable);
- }
-
}
Modified:
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogIndexException.java
URL:
http://svn.apache.org/viewvc/incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogIndexException.java?rev=963405&r1=963404&r2=963405&view=diff
==============================================================================
---
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogIndexException.java
(original)
+++
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogIndexException.java
Mon Jul 12 17:57:31 2010
@@ -1,4 +1,4 @@
-/*
+/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
@@ -18,24 +18,24 @@
package org.apache.oodt.cas.catalog.exception;
/**
- * @author bfoster
- * @version $Revision$
+ *
+ * Describe your class here.
*
*/
public class CatalogIndexException extends Exception {
- private static final long serialVersionUID = 7734987410778199955L;
+ private static final long serialVersionUID = 7734987410778199955L;
+
+ public CatalogIndexException() {
+ super();
+ }
+
+ public CatalogIndexException(String msg) {
+ super(msg);
+ }
+
+ public CatalogIndexException(String msg, Throwable throwable) {
+ super(msg, throwable);
+ }
- public CatalogIndexException() {
- super();
- }
-
- public CatalogIndexException(String msg) {
- super(msg);
- }
-
- public CatalogIndexException(String msg, Throwable throwable) {
- super(msg, throwable);
- }
-
}
Modified:
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogRepositoryException.java
URL:
http://svn.apache.org/viewvc/incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogRepositoryException.java?rev=963405&r1=963404&r2=963405&view=diff
==============================================================================
---
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogRepositoryException.java
(original)
+++
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogRepositoryException.java
Mon Jul 12 17:57:31 2010
@@ -1,4 +1,4 @@
-/*
+/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
@@ -18,24 +18,24 @@
package org.apache.oodt.cas.catalog.exception;
/**
- * @author bfoster
- * @version $Revision$
+ *
+ * Describe your class here.
*
*/
public class CatalogRepositoryException extends Exception {
- private static final long serialVersionUID = 7734987410778199955L;
+ private static final long serialVersionUID = 7734987410778199955L;
+
+ public CatalogRepositoryException() {
+ super();
+ }
+
+ public CatalogRepositoryException(String msg) {
+ super(msg);
+ }
+
+ public CatalogRepositoryException(String msg, Throwable throwable) {
+ super(msg, throwable);
+ }
- public CatalogRepositoryException() {
- super();
- }
-
- public CatalogRepositoryException(String msg) {
- super(msg);
- }
-
- public CatalogRepositoryException(String msg, Throwable throwable) {
- super(msg, throwable);
- }
-
}
Modified:
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogServiceException.java
URL:
http://svn.apache.org/viewvc/incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogServiceException.java?rev=963405&r1=963404&r2=963405&view=diff
==============================================================================
---
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogServiceException.java
(original)
+++
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/CatalogServiceException.java
Mon Jul 12 17:57:31 2010
@@ -1,4 +1,4 @@
-/*
+/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
@@ -18,24 +18,25 @@
package org.apache.oodt.cas.catalog.exception;
/**
- * @author bfoster
- * @version $Revision$
+ *
+ * Describe your class here.
+ *
*
*/
public class CatalogServiceException extends Exception {
- private static final long serialVersionUID = 7734987410778199955L;
+ private static final long serialVersionUID = 7734987410778199955L;
+
+ public CatalogServiceException() {
+ super();
+ }
+
+ public CatalogServiceException(String msg) {
+ super(msg);
+ }
+
+ public CatalogServiceException(String msg, Throwable throwable) {
+ super(msg, throwable);
+ }
- public CatalogServiceException() {
- super();
- }
-
- public CatalogServiceException(String msg) {
- super(msg);
- }
-
- public CatalogServiceException(String msg, Throwable throwable) {
- super(msg, throwable);
- }
-
}
Modified:
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/IngestServiceException.java
URL:
http://svn.apache.org/viewvc/incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/IngestServiceException.java?rev=963405&r1=963404&r2=963405&view=diff
==============================================================================
---
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/IngestServiceException.java
(original)
+++
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/IngestServiceException.java
Mon Jul 12 17:57:31 2010
@@ -1,4 +1,4 @@
-/*
+/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
@@ -18,24 +18,24 @@
package org.apache.oodt.cas.catalog.exception;
/**
- * @author bfoster
- * @version $Revision$
+ *
+ * Describe your class here.
*
*/
public class IngestServiceException extends Exception {
- private static final long serialVersionUID = 7734987410778199955L;
+ private static final long serialVersionUID = 7734987410778199955L;
+
+ public IngestServiceException() {
+ super();
+ }
+
+ public IngestServiceException(String msg) {
+ super(msg);
+ }
+
+ public IngestServiceException(String msg, Throwable throwable) {
+ super(msg, throwable);
+ }
- public IngestServiceException() {
- super();
- }
-
- public IngestServiceException(String msg) {
- super(msg);
- }
-
- public IngestServiceException(String msg, Throwable throwable) {
- super(msg, throwable);
- }
-
}
Modified:
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/QueryServiceException.java
URL:
http://svn.apache.org/viewvc/incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/QueryServiceException.java?rev=963405&r1=963404&r2=963405&view=diff
==============================================================================
---
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/QueryServiceException.java
(original)
+++
incubator/oodt/trunk/catalog/src/main/java/org/apache/oodt/cas/catalog/exception/QueryServiceException.java
Mon Jul 12 17:57:31 2010
@@ -1,4 +1,4 @@
-/*
+/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
@@ -18,24 +18,24 @@
package org.apache.oodt.cas.catalog.exception;
/**
- * @author bfoster
- * @version $Revision$
+ *
+ * Describe your class here.
*
*/
public class QueryServiceException extends Exception {
- private static final long serialVersionUID = 7734987410778199955L;
+ private static final long serialVersionUID = 7734987410778199955L;
+
+ public QueryServiceException() {
+ super();
+ }
+
+ public QueryServiceException(String msg) {
+ super(msg);
+ }
+
+ public QueryServiceException(String msg, Throwable throwable) {
+ super(msg, throwable);
+ }
- public QueryServiceException() {
- super();
- }
-
- public QueryServiceException(String msg) {
- super(msg);
- }
-
- public QueryServiceException(String msg, Throwable throwable) {
- super(msg, throwable);
- }
-
}