Package org.wso2.carbon.dataservices.core.engine

Examples of org.wso2.carbon.dataservices.core.engine.ParamValue


            PrivilegedCarbonContext.endTenantFlow();
        }
    }

    private void setTenantCredentialsInCarbonContext() {
        PrivilegedCarbonContext cc = PrivilegedCarbonContext.getThreadLocalCarbonContext();
        cc.setTenantId(ownerTenantId);
        cc.setTenantDomain(ownerTenantDomain);
    }
View Full Code Here


    TestUtils.showMessage("testLocalOperationInvocation2");
    try {
      String filePath = this.getTestDBSDirectory() + "H2InputMappingService.dbs";
      DataService dataService = DSTools.createDataService(this.loadXML(filePath), filePath);
      Map<String, ParamValue> params = new HashMap<String, ParamValue>();
      params.put("orderNumber", new ParamValue("10242"));
      params.put("orderDate", new ParamValue("2004-04-20"));
      OMElement result = DSTools.invokeOperation(dataService, "select_input_mappings_op1", params);
      assertTrue(TestUtils.validateResultStructure(result,
          TestUtils.ORDERS_XSD_PATH));
      String val = TestUtils.getFirstValue(result,
          "/Orders/Order/orderNumber",
View Full Code Here

    Map<String, ParamValue> inputs = new HashMap<String, ParamValue>();
    Map<String, List<OMElement>> inputMap = new HashMap<String, List<OMElement>>();
    Iterator<OMElement> iter = inputMessage.getChildElements();
    String name;
    List<OMElement> omElList;
    ParamValue paramValue;
    while (iter.hasNext()) {
            OMElement element = iter.next();
            name = element.getLocalName();
            if (!inputMap.containsKey(name)) {
              inputMap.put(name, new ArrayList<OMElement>());
            }
            omElList = inputMap.get(name);
            omElList.add(element);
        }
    for (String key : inputMap.keySet()) {
      omElList = inputMap.get(key);
      if (omElList.size() == 1) { /* scalar */
        paramValue = new ParamValue(getTextValueFromOMElement(omElList.get(0)));
      } else { /* array */
        paramValue = new ParamValue(ParamValue.PARAM_VALUE_ARRAY);
        for (OMElement omEl : omElList) {
          paramValue.addToArrayValue(getTextValueFromOMElement(omEl));
        }
      }
      inputs.put(key, paramValue);
    }
        return inputs;
View Full Code Here

  private static void serializeQueryParams(List<QueryParam> queryParams,
      OMElement queryEl, OMFactory fac) {
    OMElement queryParamEl;
    String paramType, sqlType, type;
    int ordinal;
    ParamValue defaultValue;
    for (QueryParam queryParam : queryParams) {
      queryParamEl = fac.createOMElement(new QName(DBSFields.PARAM));
      queryParamEl.addAttribute(DBSFields.NAME, queryParam.getName(), null);
      paramType = queryParam.getParamType();
      if (paramType != null) {
        queryParamEl.addAttribute(DBSFields.PARAM_TYPE, paramType, null);
      }
      sqlType = queryParam.getSqlType();
      if (sqlType != null) {
        queryParamEl.addAttribute(DBSFields.SQL_TYPE, sqlType, null);
      }
      type = queryParam.getType();
      if (type != null) {
        queryParamEl.addAttribute(DBSFields.TYPE, type, null);
      }
      ordinal = queryParam.getOrdinal();
      if (ordinal > 0) {
        queryParamEl.addAttribute(DBSFields.ORDINAL, String.valueOf(ordinal), null);
      }
      defaultValue = queryParam.getDefaultValue();
      if (defaultValue != null && defaultValue.getScalarValue() != null) {
        queryParamEl.addAttribute(DBSFields.ORDINAL, defaultValue.getScalarValue(), null);
      }
      /* add validators */
      serializeValidators(queryParam.getValidators(), queryParamEl, fac);
      /* add queryParam to query */
      queryEl.addChild(queryParamEl);
 
View Full Code Here

                dataEntry = new DataEntry();
                i = 1;
                for (Iterator<OMElement> fieldItr = entryEl.getChildElements(); fieldItr.hasNext();) {
                    fieldEl = fieldItr.next();
                    dataEntry.addValue(useColumnNumbers ? Integer.toString(i) :
                      fieldEl.getLocalName(), new ParamValue(fieldEl.getText()));
                    i++;
                }
                this.writeResultEntry(xmlWriter, dataEntry, params, queryLevel);
            }
View Full Code Here

        }

        public void run() {
            try {
                MessageContext msgCtx = ((Axis2MessageContext) synCtx).getAxis2MessageContext();
                Event<MessageContext> event = new Event(msgCtx);
                subscriptions = subscriptionManager.getMatchingSubscriptions(event);
            } catch (EventException e) {
                handleException("Matching subscriptions fetching error", e);
            }
View Full Code Here

     * @throws EventException event
     */
    private void processGetStatusRequest(MessageContext mc,
                                         ResponseMessageBuilder messageBuilder)
            throws AxisFault, EventException {
        Subscription subscription =
                SubscriptionMessageBuilder.createGetStatusMessage(mc);
        if (log.isDebugEnabled()) {
            log.debug("GetStatus request recived for SynapseSubscription ID : " +
                    subscription.getId());
        }
        subscription = subscriptionManager.getSubscription(subscription.getId());
        if (subscription != null) {
            if (log.isDebugEnabled()) {
                log.debug("Sending GetStatus responce for SynapseSubscription ID : " +
                        subscription.getId());
            }
            //send the responce
            SOAPEnvelope soapEnvelope = messageBuilder.genGetStatusResponse(subscription);
            dispatchResponse(soapEnvelope, EventingConstants.WSE_GET_STATUS_RESPONSE,
                    mc, false);
View Full Code Here

            // Adding static subscriptions
            List<Subscription> staticSubscriptionList =
                    eventSource.getSubscriptionManager().getStaticSubscriptions();
            for (Iterator<Subscription> iterator = staticSubscriptionList.iterator();
                 iterator.hasNext();) {
                Subscription staticSubscription = iterator.next();
                OMElement staticSubElem =
                        fac.createOMElement("subscription", XMLConfigConstants.SYNAPSE_OMNAMESPACE);
                staticSubElem.addAttribute(
                        fac.createOMAttribute("id", nullNS, staticSubscription.getId()));
                OMElement filterElem =
                        fac.createOMElement("filter", XMLConfigConstants.SYNAPSE_OMNAMESPACE);
                filterElem.addAttribute(fac.createOMAttribute("source", nullNS,
                        (String) staticSubscription.getFilterValue()));
                filterElem.addAttribute(fac.createOMAttribute("dialect", nullNS,
                        (String) staticSubscription.getFilterDialect()));
                staticSubElem.addChild(filterElem);
                OMElement endpointElem =
                        fac.createOMElement("endpoint", XMLConfigConstants.SYNAPSE_OMNAMESPACE);
                OMElement addressElem =
                        fac.createOMElement("address", XMLConfigConstants.SYNAPSE_OMNAMESPACE);
                addressElem.addAttribute(
                        fac.createOMAttribute("uri", nullNS, staticSubscription.getEndpointUrl()));
                endpointElem.addChild(addressElem);
                staticSubElem.addChild(endpointElem);
                if (staticSubscription.getExpires() != null) {
                    OMElement expiresElem =
                            fac.createOMElement("expires", XMLConfigConstants.SYNAPSE_OMNAMESPACE);
                    fac.createOMText(expiresElem,
                            ConverterUtil.convertToString(staticSubscription.getExpires()));
                    staticSubElem.addChild(expiresElem);
                }
                evenSourceElem.addChild(staticSubElem);
            }
View Full Code Here


    public SynapseSubscription() {
        this.setId(UIDGenerator.generateURNString());
        this.setDeliveryMode(EventingConstants.WSE_DEFAULT_DELIVERY_MODE);
        SubscriptionData subscriptionData = new SubscriptionData();
        subscriptionData.setProperty(SynapseEventingConstants.STATIC_ENTRY, "false");
        this.setSubscriptionData(subscriptionData);
    }
View Full Code Here

                    .getAttribute(new QName(XMLConfigConstants.NULL_NAMESPACE, "class"));
            if (clazz != null) {
                String className = clazz.getAttributeValue();
                try {
                    Class subscriptionManagerClass = Class.forName(className);
                    SubscriptionManager manager =
                            (SubscriptionManager) subscriptionManagerClass.newInstance();
                    Iterator itr = subscriptionManagerElem.getChildrenWithName(PROPERTIES_QNAME);
                    while (itr.hasNext()) {
                        OMElement propElem = (OMElement) itr.next();
                        String propName =
                                propElem.getAttribute(new QName("name")).getAttributeValue();
                        String propValue =
                                propElem.getAttribute(new QName("value")).getAttributeValue();
                        if (propName != null && !"".equals(propName.trim()) &&
                                propValue != null && !"".equals(propValue.trim())) {

                            propName = propName.trim();
                            propValue = propValue.trim();

                            PasswordManager passwordManager =
                                    PasswordManager.getInstance();
                            String key = eventSource.getName() + "." + propName;

                            if (passwordManager.isInitialized()
                                    && passwordManager.isTokenProtected(key)) {
                                eventSource.putConfigurationProperty(propName, propValue);
                                propValue = passwordManager.resolve(propValue);
                            }

                            manager.addProperty(propName, propValue);
                        }
                    }
                    eventSource.setSubscriptionManager(manager);
                    eventSource.getSubscriptionManager()
                            .init(); // Initialise before doing further processing, required for static subscriptions
View Full Code Here

TOP

Related Classes of org.wso2.carbon.dataservices.core.engine.ParamValue

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.