Package org.apache.jetspeed.portal.portlets

Examples of org.apache.jetspeed.portal.portlets.GenericMVCPortlet


              {

                // process implicit ActionEvent invocation
                logger.debug("Action: try executing events");

                GenericMVCPortlet portlet = (GenericMVCPortlet) context.get("portlet");

                if (portlet != null)
                  {

                    // verify this portlet is the one requested by checking the
View Full Code Here


    public void doPerform(RunData rundata, Context context)
                   throws Exception
      {

        GenericMVCPortlet portlet = null;
        JetspeedRunData jdata = (JetspeedRunData) rundata;
        logger.debug("GenericMVCAction: retrieved context: " + context);

        if (context != null)
          {
            portlet = (GenericMVCPortlet) context.get("portlet");
          }

        logger.debug("GenericMVCAction: retrieved portlet: " + portlet);

        if (portlet != null)
          {

            //System.out.println("class = " + this.getClass().getName());
            //rundata.getUser().setTemp(this.getClass().getName(), portlet.getID());
            // we're bein configured
            if ((jdata.getMode() == JetspeedRunData.CUSTOMIZE) && (portlet.getName().equals(jdata.getCustomized().getName())))
              {
                logger.debug("GenericMVCAction: building customize");
                buildConfigureContext(portlet, context, rundata);

                return;
View Full Code Here

              {

                // process implicit ActionEvent invocation
                Log.debug("Action: try executing events");

                GenericMVCPortlet portlet = (GenericMVCPortlet) context.get("portlet");

                if (portlet != null)
                  {

                    // verify this portlet is the one requested by checking the
View Full Code Here

    public void doPerform(RunData rundata, Context context)
                   throws Exception
      {

        GenericMVCPortlet portlet = null;
        JetspeedRunData jdata = (JetspeedRunData) rundata;
        Log.debug("GenericMVCAction: retrieved context: " + context);

        if (context != null)
          {
            portlet = (GenericMVCPortlet) context.get("portlet");
          }

        Log.debug("GenericMVCAction: retrieved portlet: " + portlet);

        if (portlet != null)
          {

            //System.out.println("class = " + this.getClass().getName());
            //rundata.getUser().setTemp(this.getClass().getName(), portlet.getID());
            // we're bein configured
            if ((jdata.getMode() == jdata.CUSTOMIZE) && (portlet.getName().equals(jdata.getCustomized().getName())))
              {
                Log.debug("GenericMVCAction: building customize");
                buildConfigureContext(portlet, context, rundata);

                return;
View Full Code Here

              {

                // process implicit ActionEvent invocation
                logger.debug("Action: try executing events");

                GenericMVCPortlet portlet = (GenericMVCPortlet) context.get("portlet");

                if (portlet != null)
                  {

                    // verify this portlet is the one requested by checking the
View Full Code Here

    public void doPerform(RunData rundata, Context context)
                   throws Exception
      {

        GenericMVCPortlet portlet = null;
        JetspeedRunData jdata = (JetspeedRunData) rundata;
        logger.debug("GenericMVCAction: retrieved context: " + context);

        if (context != null)
          {
            portlet = (GenericMVCPortlet) context.get("portlet");
          }

        logger.debug("GenericMVCAction: retrieved portlet: " + portlet);

        if (portlet != null)
          {

            //System.out.println("class = " + this.getClass().getName());
            //rundata.getUser().setTemp(this.getClass().getName(), portlet.getID());
            // we're bein configured
            if ((jdata.getMode() == JetspeedRunData.CUSTOMIZE) && (portlet.getName().equals(jdata.getCustomized().getName())))
              {
                logger.debug("GenericMVCAction: building customize");
                buildConfigureContext(portlet, context, rundata);

                return;
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.portal.portlets.GenericMVCPortlet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.