Examples of addParameter()


Examples of org.pentaho.cdf.util.CdfHttpServletRequestWrapper.addParameter()

      CdfHttpServletRequestWrapper request = new CdfHttpServletRequestWrapper( httpServletRequest );
      if( params != null ){
        Iterator<String> it = params.keySet().iterator();
        while( it.hasNext() ){
          String key = it.next();
          request.addParameter( key, params.get( key ) );
        }
      }
     
      String buffer = XactionUtil.execute( contentType, file, request, httpServletResponse, userSession, null );

Examples of org.pentaho.reporting.designer.core.editor.drilldown.model.ParameterGroup.addParameter()

      {
        final String parameterGroupLabel = parameter.getAttribute("parameter-group-label"); //$NON-NLS-1$
        parameterGroup = new ParameterGroup(parameterGroupName, parameterGroupLabel);
        parameterDefinition.addParameterGroup(parameterGroup);
      }
      parameterGroup.addParameter(parameter);
    }

   
  }

Examples of org.picketlink.identity.federation.core.saml.v2.impl.DefaultSAML2HandlerConfig.addParameter()

        SAML2InResponseToVerificationHandler verificationHandler = new SAML2InResponseToVerificationHandler();

        // Create configuration for handlers
        SAML2HandlerChainConfig chainConfig = new DefaultSAML2HandlerChainConfig();
        SAML2HandlerConfig handlerConfig = new DefaultSAML2HandlerConfig();
        handlerConfig.addParameter(GeneralConstants.NAMEID_FORMAT, JBossSAMLURIConstants.NAMEID_FORMAT_PERSISTENT.get());
        handlerConfig.addParameter(SAML2Handler.DISABLE_SENDING_ROLES, "true");

        Map<String, Object> chainOptions = new HashMap<String, Object>();
        ProviderType spType = new SPType();
        chainOptions.put(GeneralConstants.CONFIGURATION, spType);

Examples of org.picketlink.identity.federation.core.saml.v2.interfaces.SAML2HandlerConfig.addParameter()

        SAML2InResponseToVerificationHandler verificationHandler = new SAML2InResponseToVerificationHandler();

        // Create configuration for handlers
        SAML2HandlerChainConfig chainConfig = new DefaultSAML2HandlerChainConfig();
        SAML2HandlerConfig handlerConfig = new DefaultSAML2HandlerConfig();
        handlerConfig.addParameter(GeneralConstants.NAMEID_FORMAT, JBossSAMLURIConstants.NAMEID_FORMAT_PERSISTENT.get());
        handlerConfig.addParameter(SAML2Handler.DISABLE_SENDING_ROLES, "true");

        Map<String, Object> chainOptions = new HashMap<String, Object>();
        ProviderType spType = new SPType();
        chainOptions.put(GeneralConstants.CONFIGURATION, spType);

Examples of org.picketlink.test.identity.federation.web.mock.MockHttpServletRequest.addParameter()

        spEmpl.init(filterConfig);

        MockHttpSession filterSession = new MockHttpSession();
        MockHttpServletRequest filterRequest = new MockHttpServletRequest(filterSession, "POST");
        filterRequest.addParameter(GeneralConstants.GLOBAL_LOGOUT, "true");

        MockHttpServletResponse filterResponse = new MockHttpServletResponse();
        ByteArrayOutputStream filterbaos = new ByteArrayOutputStream();
        filterResponse.setOutputStream(filterbaos);

Examples of org.renjin.gcc.jimple.JimpleMethodBuilder.addParameter()

    applyMethod.setName("apply");
    applyMethod.setReturnType(signature.getReturnType());

    int paramIndex = 0;
    for (JimpleType paramType : signature.getParameterTypes()) {
      applyMethod.addParameter(paramType, "p" + paramIndex);
      paramIndex++;
    }

    interfaces.add(signature);
  }

Examples of org.richfaces.javascript.JSFunction.addParameter()

            options.put("requestTime", new JSReference("options.requestTime"));
            options.put("timeout", new JSReference("options.timeout"));
            options.put("eventsQueue", new JSReference("options.eventsQueue"));
            options.put("implicitEventsQueue", new JSReference("options.implicitEventsQueue"));
            options.put("ignoreDupResponses", new JSReference("options.ignoreDupResponses"));
            ajaxFunction.addParameter(options);

            ResponseWriter responseWriter = facesContext.getResponseWriter();

            responseWriter.startElement(HTML.SCRIPT_ELEM, component);
            responseWriter.writeAttribute(HTML.TYPE_ATTR, "text/javascript", null);

Examples of org.s3b.search.query.QueryObject.addParameter()

      //  if (!expand)result.clearParameters();
        if (newqp != null){
          if (newqp.getType().equals(qp.getType())) { // extend existing QueryParameter of given type with new entries (here: QP.type = Author)
            intersectValues(qp,newqp);
          } else
            result.addParameter(newqp,false);
         
        }
      }
    }
   

Examples of org.salamandra.web.core.property.Params.addParameter()

                          for (Annotation ref : aValue) {
                           
                            Method mv = ref.annotationType().getDeclaredMethod("value");
                            Object v = mv.invoke(ref);
                           
                            params.addParameter(aParam.type(), v);
              }
                        }
                  }
        }
      }

Examples of org.salamandra.web.core.transformer.Transformer.addParameter()

            // � imposto le sue propriet�
            PropertyUtils.applyPropertyValues(action_forward.getSetProperties(), transformer);
          } catch (PropertiesContainerException ex) {
            for (Iterator<PropertiesException> iterator = ex.iterator(); iterator.hasNext();) {
              PropertiesException element = (PropertiesException) iterator.next();
              transformer.addParameter(element.getProperty(), String.valueOf(element.getValue()));

              LOG.info(element.getMessage());
            }
          }
          return transformer;
TOP
Copyright © 2018 www.massapi.com. 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.