Package com.eclipsesource.tabris.tracking.internal.piwik.model.action

Examples of com.eclipsesource.tabris.tracking.internal.piwik.model.action.EventAction


    return ecommerceItem;
  }

  private Action createEventAction( TrackingEvent event ) {
    String eventId = ( String )event.getDetail();
    EventAction eventAction = new EventAction( createHost( event ) + "/action/event/" + eventId );
    eventAction.setCategory( CATEGORY_EVENT );
    eventAction.setAction( ACTION_EVENT );
    eventAction.setEventName( eventId );
    return eventAction;
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.tracking.internal.piwik.model.action.EventAction

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.