Package org.wso2.carbon.business.messaging.paypal.mediator.ui

Examples of org.wso2.carbon.business.messaging.paypal.mediator.ui.Input


    }

    public byte[] getProcessImage(String processId) {

        QName qName = decode(processId);
        SVGInterface svg = createSVG(qName);
        return svg.toPNGBytes();
    }
View Full Code Here


    private SVGInterface createSVG(QName qName) {

        // generate new
        InputStream in = getBpelDescriptor(qName);

        SVGInterface svg = null;

        try {
            svg = BPEL2SVGUtil.generate(in);

            if (svg == null)
View Full Code Here

   
    protected static SVGImpl generateSVGImpl(java.io.InputStream is) throws java.io.IOException {
      byte[] b=new byte[is.available()];
      is.read(b);
   
      BPELInterface bpel = new BPELImpl();
        OMElement bpelStr = bpel.load(new String(b));
       
        bpel.processBpelString(bpelStr);

        LayoutManager layoutManager = BPEL2SVGFactory.getInstance().getLayoutManager();
        layoutManager.setVerticalLayout(true);
        layoutManager.setYSpacing(20);
        layoutManager.setYSpacing(50);
        layoutManager.layoutSVG(bpel.getRootActivity());

        SVGImpl svg = new SVGImpl();
        svg.setRootActivity(bpel.getRootActivity());
       
        return(svg);
    }
View Full Code Here

   * @param transformer The optional image transformer
   * @throws java.io.IOException Failed to generate the representation
   */
    public static void generate(java.io.InputStream is, java.io.OutputStream os,
                SVGImageTransformer transformer) throws java.io.IOException {
        SVGImpl svg = generateSVGImpl(is);
       
        if (transformer == null) {
          String str=svg.getHeaders()+svg.generateSVGString();
          os.write(str.getBytes());
        } else {
          transformer.transform(svg, os);
        }
    }
View Full Code Here

        layoutManager.setVerticalLayout(true);
        layoutManager.setYSpacing(20);
        layoutManager.setYSpacing(50);
        layoutManager.layoutSVG(bpel.getRootActivity());

        SVGImpl svg = new SVGImpl();
        svg.setRootActivity(bpel.getRootActivity());
       
        return(svg);
    }
View Full Code Here

            String key = input.getName();
            if (null != parentType) {
                key = parentType + "_" + key;
            }
            if (inputsMap.containsKey(key)) {
                Input fetchedInput = inputsMap.get(key);
                input.setSourceValue(fetchedInput.getSourceValue());
                input.setSourceXPath(fetchedInput.getSourceXPath());
                System.out.println(key + "--> " + input.getName());
            }
        } else {
            for (Input subInput : input.getSubInputs()) {
                populateInput(subInput, input.getType());
View Full Code Here

     * @return an instance of Input.
     */
    @SuppressWarnings("unchecked")
    private Input createInput(OMElement inputElement) {

        Input input = new Input();
        OMAttribute typeAttr = inputElement.getAttribute(ATTR_TYPE);
        if (null == typeAttr || null == typeAttr.getAttributeValue()) {
            input.setName(inputElement.getAttribute(ATTR_NAME)
                    .getAttributeValue());
            input.setRequired(Boolean.parseBoolean(null != inputElement
                    .getAttribute(ATTR_REQUIRED) ? inputElement.getAttribute(
                    ATTR_REQUIRED).getAttributeValue() : "false"));
        } else {
            input.setType(typeAttr.getAttributeValue());

            OMAttribute nameAttr = inputElement.getAttribute(ATTR_NAME);
            if(nameAttr!=null && nameAttr.getAttributeValue()!=null){
                input.setName(nameAttr.getAttributeValue());   
            }

            for (Iterator<OMElement> itr = inputElement
                    .getChildrenWithName(ELEM_INPUT); itr.hasNext();) {
                input.getSubInputs().add(createInput(itr.next()));
            }
        }

        return input;
    }
View Full Code Here

    public void testSimpleOperationInputs() {
        getBalanceOp = OperationFactory.getInstance().create("GetBalance");
        //test getBalance Operation inputs
        HashMap map = new HashMap();

        Input detailInput = new Input();
        detailInput.setName("DetailLevel");
        detailInput.setRequired(true);
        map.put(detailInput.getName(), detailInput);

        Input errorLang = new Input();
        errorLang.setName("ErrorLanguage");
        errorLang.setRequired(true);
        map.put(errorLang.getName(), errorLang);

        List<Input> inputs = getBalanceOp.getInputs();
        PaypalTestUtil.validateSimpleInputs(map, inputs);

    }
View Full Code Here

    }

    public static void validateSimpleInputs(HashMap map, List<Input> inputs) {
        for (Input input : inputs) {
            Assert.assertTrue(map.containsKey(input.getName()));
            Input testInput = (Input) map.get(input.getName());
            validateInputProperties(input, testInput);
        }
    }
View Full Code Here

            String key = input.getName() == null ? input.getType() : input.getName();
            Assert.assertTrue(map.containsKey(key));
            Object inline = map.get(key);

            if (inline instanceof Input) {
                Input testInput = (Input) inline;
                validateInputProperties(input, testInput);
            } else if (inline instanceof HashMap) {
                validateComplexInputs((HashMap) inline, input.getSubInputs());
            } else {
                //this can't happen ie:-null
View Full Code Here

TOP

Related Classes of org.wso2.carbon.business.messaging.paypal.mediator.ui.Input

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.