weaver 2003/07/30 11:38:34
Modified: portal/src/java/org/apache/jetspeed/om/registry/base
BasePortletEntry.java
Log:
Refactoring:
Renaming all concrete classes that implement a specific interface to have the "Impl"
affix.
This should be the standard naming convention to follow from here on out.
Revision Changes Path
1.2 +6 -6
jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/om/registry/base/BasePortletEntry.java
Index: BasePortletEntry.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed-2/portal/src/java/org/apache/jetspeed/om/registry/base/BasePortletEntry.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- BasePortletEntry.java 28 Jul 2003 23:47:45 -0000 1.1
+++ BasePortletEntry.java 30 Jul 2003 18:38:34 -0000 1.2
@@ -61,7 +61,7 @@
import java.util.Vector;
-import org.apache.jetspeed.om.common.portlet.BasePortletApplicationDefinition;
+import org.apache.jetspeed.om.common.portlet.PortletApplicationDefinitionImpl;
import org.apache.jetspeed.om.registry.CachedParameter;
import org.apache.jetspeed.om.registry.Category;
import org.apache.jetspeed.om.registry.ContentURL;
@@ -78,13 +78,13 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Rapha�l Luta</a>
* @version $Id$
- * @deprecated use org.apache.jetspeed.om.common.base.BasePortletEntity
+ * @deprecated use org.apache.jetspeed.om.common.base.PortletEntityImpl
*/
public class BasePortletEntry extends BasePortletInfoEntry
implements PortletEntry, java.io.Serializable
{
- private BasePortletApplicationDefinition application = null;
+ private PortletApplicationDefinitionImpl application = null;
private Collection descriptions = null;
@@ -574,7 +574,7 @@
/**
* @see org.apache.jetspeed.om.registry.PortletEntry#getApplication
*/
- public BasePortletApplicationDefinition getApplication()
+ public PortletApplicationDefinitionImpl getApplication()
{
return this.application;
}
@@ -582,7 +582,7 @@
/**
* @see org.apache.jetspeed.om.registry.PortletEntry#setApplication
*/
- public void setApplication(BasePortletApplicationDefinition application)
+ public void setApplication(PortletApplicationDefinitionImpl application)
{
this.application = application;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]