You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by ta...@apache.org on 2004/08/02 23:01:59 UTC

cvs commit: jakarta-jetspeed/fusion/src/java/org/apache/jetspeed/fusion/modules/actions/portlets RegisterPortletApplicationAction.java PortletApplicationViewBean.java

taylor      2004/08/02 14:01:59

  Modified:    fusion/src/java/org/apache/jetspeed/fusion/modules/actions/portlets
                        RegisterPortletApplicationAction.java
                        PortletApplicationViewBean.java
  Log:
  fixing a few bugs, Ui is now operation and ready to interact with portlet apps
  CVS: ----------------------------------------------------------------------
  CVS: PR:
  CVS:   If this change addresses a PR in the problem report tracking
  CVS:   database, then enter the PR number(s) here.
  CVS: Obtained from:
  CVS:   If this change has been taken from another system, such as NCSA,
  CVS:   then name the system in this line, otherwise delete it.
  CVS: Submitted by:
  CVS:   If this code has been contributed to Apache by someone else; i.e.,
  CVS:   they sent us a patch or a new module, then include their name/email
  CVS:   address here. If this is your work then delete this line.
  CVS: Reviewed by:
  CVS:   If we are doing pre-commit code reviews and someone else has
  CVS:   reviewed your changes, include their name(s) here.
  CVS:   If you have not had it reviewed then delete this line.
  
  Revision  Changes    Path
  1.2       +3 -1      jakarta-jetspeed/fusion/src/java/org/apache/jetspeed/fusion/modules/actions/portlets/RegisterPortletApplicationAction.java
  
  Index: RegisterPortletApplicationAction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed/fusion/src/java/org/apache/jetspeed/fusion/modules/actions/portlets/RegisterPortletApplicationAction.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- RegisterPortletApplicationAction.java	2 Aug 2004 19:33:42 -0000	1.1
  +++ RegisterPortletApplicationAction.java	2 Aug 2004 21:01:59 -0000	1.2
  @@ -98,7 +98,9 @@
               {
                   // get the primary key and put the object in the context
                   String appName = rundata.getParameters().getString(SecurityConstants.PARAM_ENTITY_ID);
  +                System.out.println("entity = " + appName);
                   bean = this.getPortletApplication(appName);
  +                System.out.println("bean = " + bean);
                   context.put(CONTEXT_APP, bean);
               }
   
  
  
  
  1.2       +6 -6      jakarta-jetspeed/fusion/src/java/org/apache/jetspeed/fusion/modules/actions/portlets/PortletApplicationViewBean.java
  
  Index: PortletApplicationViewBean.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed/fusion/src/java/org/apache/jetspeed/fusion/modules/actions/portlets/PortletApplicationViewBean.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PortletApplicationViewBean.java	2 Aug 2004 19:33:42 -0000	1.1
  +++ PortletApplicationViewBean.java	2 Aug 2004 21:01:59 -0000	1.2
  @@ -27,28 +27,28 @@
           private String name;
           private String context;
           
  -        PortletApplicationViewBean(String name, String context)
  +        public PortletApplicationViewBean(String name, String context)
           {
               this.name = name;
               this.context = context;
           }
           
  -        String getName()
  +        public String getName()
           {
               return name;
           }
           
  -        String getContext()
  +        public String getContext()
           {
               return context;
           }
    
  -        void setName(String name)
  +        public void setName(String name)
           {
               this.name = name;
           }
           
  -        void setContext(String context)
  +        public void setContext(String context)
           {
               this.context = context;
           }        
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-dev-help@jakarta.apache.org