Author: simonetripodi
Date: Wed Aug 31 20:20:25 2011
New Revision: 1163793
URL: http://svn.apache.org/viewvc?rev=1163793&view=rev
Log:
package.html replaced by package-info.java files
Added:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/config/package-info.java
(with props)
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/generic/package-info.java
(with props)
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/impl/package-info.java
(with props)
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/package-info.java
(with props)
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/faces/package-info.java
(with props)
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/package-info.java
(with props)
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/package-info.java
(with props)
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/package-info.java
(with props)
Modified:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/config/package.html
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/generic/package.html
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/impl/package.html
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/package.html
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/faces/package.html
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/package.html
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/package.html
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/package.html
Added:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/config/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/config/package-info.java?rev=1163793&view=auto
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/config/package-info.java
(added)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/config/package-info.java
Wed Aug 31 20:20:25 2011
@@ -0,0 +1,22 @@
+/*
+ * 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.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Optional package for configuring command chains in a catalog
+ * (using Digester) from an XML configuration file.
+ */
+package org.apache.commons.chain.config;
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/config/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/config/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/config/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/generic/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/generic/package-info.java?rev=1163793&view=auto
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/generic/package-info.java
(added)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/generic/package-info.java
Wed Aug 31 20:20:25 2011
@@ -0,0 +1,22 @@
+/*
+ * 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.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Concrete implementations of generic Commands that are useful in many
+ * different environments, not tied to a particular tier such as Servlets).
+ */
+package org.apache.commons.chain.generic;
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/generic/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/generic/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/generic/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/impl/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/impl/package-info.java?rev=1163793&view=auto
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/impl/package-info.java
(added)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/impl/package-info.java
Wed Aug 31 20:20:25 2011
@@ -0,0 +1,22 @@
+/*
+ * 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.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Convenient base implementations of Chain of Responsibility Pattern
+ * contracts from <code>org.apache.commons.chain</code>.
+ */
+package org.apache.commons.chain.impl;
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/impl/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/impl/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/impl/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/package-info.java?rev=1163793&view=auto
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/package-info.java
(added)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/package-info.java
Wed Aug 31 20:20:25 2011
@@ -0,0 +1,27 @@
+/*
+ * 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.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * The fundamental API contracts for the Chain of Responsibilty Pattern as
+ * implemented in this package. See
+ * <a href="impl/package-summary.html">org.apache.commons.chain.impl</a> for
+ * convenient base implementations of <code>Chain</code> and
<code>Context</code>,
+ * and see <a href="web/package-summary.html">org.apache.commons.chain.web</a>
for
+ * specialized <code>Context</code> implementations suitable for use in web
+ * applications.
+ */
+package org.apache.commons.chain;
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/faces/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/faces/package-info.java?rev=1163793&view=auto
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/faces/package-info.java
(added)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/faces/package-info.java
Wed Aug 31 20:20:25 2011
@@ -0,0 +1,22 @@
+/*
+ * 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.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Specialized <code>Context</code> and <code>Command</code> implementations
+ * suitable for use in a JavaServer Faces API environment.
+ */
+package org.apache.commons.chain.web.faces;
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/faces/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/faces/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/faces/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/package-info.java?rev=1163793&view=auto
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/package-info.java
(added)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/package-info.java
Wed Aug 31 20:20:25 2011
@@ -0,0 +1,23 @@
+/*
+ * 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.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Basis for specialized <code>Context</code> implementations suitable for use
+ * in web applications, and generic <code>Command</code> implementations useful
+ * across web application environments.
+ */
+package org.apache.commons.chain.web;
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/package-info.java?rev=1163793&view=auto
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/package-info.java
(added)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/package-info.java
Wed Aug 31 20:20:25 2011
@@ -0,0 +1,22 @@
+/*
+ * 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.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Specialized <code>Context</code> and <code>Command</code> implementations
+ * suitable for use in a Portlet API environment.
+ */
+package org.apache.commons.chain.web.portlet;
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/portlet/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/package-info.java
URL:
http://svn.apache.org/viewvc/commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/package-info.java?rev=1163793&view=auto
==============================================================================
---
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/package-info.java
(added)
+++
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/package-info.java
Wed Aug 31 20:20:25 2011
@@ -0,0 +1,22 @@
+/*
+ * 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.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Specialized <code>Context</code> and <code>Command</code> implementations
+ * suitable for use in a Servlet API environment.
+ */
+package org.apache.commons.chain.web.servlet;
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/package-info.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/package-info.java
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Propchange:
commons/proper/chain/branches/version-2.0-work/src/main/java/org/apache/commons/chain/web/servlet/package-info.java
------------------------------------------------------------------------------
svn:mime-type = text/plain