Package org.wso2.carbon.policybuilder.ui.internal.property

Examples of org.wso2.carbon.policybuilder.ui.internal.property.MessageProperty


    }
  }


  public void init() {
    this.msgProp = new MessageProperty(new AsymmetricTokenPropertyFactory());
    //To change body of implemented methods use File | Settings | File Templates.
  }
View Full Code Here


  }


  public void init() {
    //   Assertion assertion = new Assertion("SYM_BINDING",Consts.SYM_BINDING_ASSERT);
    this.msgProp = new MessageProperty(new SymmetricPropertyFactory());
  }
View Full Code Here

    doEvaluate(e);
    return 0//To change body of implemented methods use File | Settings | File Templates.
  }

  public void init() {
    this.msgProp = new MessageProperty(new AsymetricPropertyFactory());
  }
View Full Code Here

  public void setContext() {
  }

  public void init() {
    this.msgProp = new MessageProperty(new InitiatorTokenPropertyFactory());
  }
View Full Code Here

  public boolean hasTimeStamp() {
    return isTimeStampAvailable;
  }

  public void init() {
    this.msgProp = new MessageProperty(new TimeStampPropertyFactory());
  }
View Full Code Here

  }


  public void init() {
    //To change body of implemented methods use File | Settings | File Templates.
    this.msgProp = new MessageProperty(new TokenPropertyFactory());
  }
View Full Code Here

    doEvaluate(e);
    return 0//To change body of implemented methods use File | Settings | File Templates.
  }

  public void init() {
    this.msgProp = new MessageProperty(new AlgorithmSuitePropertyFactory());

    //To change body of implemented methods use File | Settings | File Templates.
  }
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


    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

TOP

Related Classes of org.wso2.carbon.policybuilder.ui.internal.property.MessageProperty

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.