Package org.wso2.carbon.brokermanager.core

Examples of org.wso2.carbon.brokermanager.core.BrokerConfiguration


    }

    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

     */
    public void addBrokerConfiguration(String brokerName, String brokerType,
                                       BrokerProperty[] properties)
            throws BrokerManagerAdminServiceException {
        BrokerManagerHolder brokerManager = BrokerManagerHolder.getInstance();
        BrokerConfiguration brokerConfiguration = new BrokerConfiguration();
        brokerConfiguration.setName(brokerName);
        brokerConfiguration.setType(brokerType);
        int tenantId = CarbonContext.getCurrentContext().getTenantId();
        // add broker properties
        for (BrokerProperty brokerProperty : properties) {
            brokerConfiguration.addProperty(brokerProperty.getKey(), brokerProperty.getValue());
        }
        // add broker configuration
        try {
            brokerManager.getBrokerManagerService().addBrokerConfiguration(brokerConfiguration, tenantId);
            testBrokerConfiguration(brokerName);
View Full Code Here

        if (brokerConfigurationList != null) {
            // create broker configuration details array
            BrokerConfigurationDetails[] brokerConfigurationDetailsArray = new
                    BrokerConfigurationDetails[brokerConfigurationList.size()];
            for (int index = 0; index < brokerConfigurationDetailsArray.length; index++) {
                BrokerConfiguration brokerConfiguration = brokerConfigurationList.get(index);
                String brokerName = brokerConfiguration.getName();
                String brokerType = brokerConfiguration.getType();
                Map<String, String> propertiesMap = brokerConfiguration.getProperties();

                // create broker configuration details with broker name and type
                brokerConfigurationDetailsArray[index] = new BrokerConfigurationDetails(
                        brokerName, brokerType, propertiesMap.size());
                // add broker properties
View Full Code Here

            throws BrokerManagerAdminServiceException {
        BrokerManagerHolder brokerManager = BrokerManagerHolder.getInstance();
        // get broker to get broker properties with parameters isSecured, isRequired
        BrokerHolder brokerHolder = BrokerHolder.getInstance();
        int tenantId = CarbonContext.getCurrentContext().getTenantId();
        BrokerConfiguration brokerConfiguration = brokerManager.getBrokerManagerService().
                getBrokerConfiguration(brokerName, tenantId);
        if (brokerConfiguration != null) {
            // get broker type
            String brokerType = brokerConfiguration.getType();
            // get broker properties
            List<Property> propertyList = brokerHolder.getBrokerService().getBrokerProperties(
                    brokerType);
            Map<String, String> brokerProperties = brokerConfiguration.getProperties();
            BrokerProperty[] brokerPropertyArray = new BrokerProperty[brokerProperties.size()];
            int index = 0;
            for (Property property : propertyList) {
                // create broker property
                brokerPropertyArray[index] = new BrokerProperty(property.getPropertyName(),
View Full Code Here

            throws BrokerManagerAdminServiceException {
        BrokerHolder brokerHolder = BrokerHolder.getInstance();
        BrokerManagerHolder brokerManager = BrokerManagerHolder.getInstance();

        int tenantId = CarbonContext.getCurrentContext().getTenantId();
        BrokerConfiguration brokerConfiguration =
                brokerManager.getBrokerManagerService().getBrokerConfiguration(brokerName, tenantId);
        org.wso2.carbon.broker.core.BrokerConfiguration configuration =
                new org.wso2.carbon.broker.core.BrokerConfiguration();
        configuration.setName(brokerConfiguration.getName());
        configuration.setType(brokerConfiguration.getType());
        configuration.setProperties(brokerConfiguration.getProperties());
        XMLStreamReader reader1 = null;
        String testMessage = " <brokerConfigurationTest>\n" +
                             "   <message>This is a test message.</message>\n" +
                             "   </brokerConfigurationTest>";
        try {
View Full Code Here

*/
public class BrokerConfigurationHelper {

    public static BrokerConfiguration fromOM(OMElement brokerConfigOMElement) {

        BrokerConfiguration brokerConfiguration = new BrokerConfiguration();

        brokerConfiguration.setName(brokerConfigOMElement.getAttributeValue(
                                                new QName("", BMConstants.BM_ATTR_NAME)));

        brokerConfiguration.setType(brokerConfigOMElement.getAttributeValue(
                                                new QName("", BMConstants.BM_ATTR_TYPE)));

        Iterator propertyIter = brokerConfigOMElement.getChildrenWithName(
                      new QName(BMConstants.BM_CONF_NS, BMConstants.BM_ELE_PROPERTY));
        OMElement propertyOMElement = null;

        for (; propertyIter.hasNext();) {
            propertyOMElement = (OMElement) propertyIter.next();
            String name = propertyOMElement.getAttributeValue(
                    new QName("", BMConstants.BM_ATTR_NAME));
            String value = propertyOMElement.getText();
            brokerConfiguration.addProperty(name, value);
        }

        return brokerConfiguration;

    }
View Full Code Here

TOP

Related Classes of org.wso2.carbon.brokermanager.core.BrokerConfiguration

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.