-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v3.1.0 release with iovation sdk support for conversations
- Loading branch information
Casey Kulm
committed
Mar 9, 2016
1 parent
8b1cccc
commit 2b30c20
Showing
92 changed files
with
546 additions
and
9,455 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...droidsdkcommon/src/main/java/com/bazaarvoice/bvandroidsdk/UsedFeatureCanonicalSchema.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* Copyright 2016 Bazaarvoice Inc. All rights reserved. | ||
*/ | ||
|
||
package com.bazaarvoice.bvandroidsdk; | ||
|
||
/** | ||
* Internal API: Canonical schema for used feature events | ||
*/ | ||
abstract class UsedFeatureCanonicalSchema extends BvAnalyticsSchema { | ||
|
||
private static final String KEY_NAME = "name"; | ||
private static final String KEY_DETAIL1 = "detail1"; | ||
private static final String KEY_PRODUCT_ID = "productId"; | ||
private static final String KEY_CATEGORY_ID = "categoryId"; | ||
private static final String eventClass = "Feature"; | ||
private static final String eventType = "Used"; | ||
|
||
public UsedFeatureCanonicalSchema(String source, String name) { | ||
super(eventClass, eventType, source); | ||
addKeyVal(KEY_NAME, name); | ||
} | ||
|
||
protected void addDetail1(String detail1) { | ||
addKeyVal(KEY_DETAIL1, detail1); | ||
} | ||
|
||
protected void addProductId(String productId) { | ||
addKeyVal(KEY_PRODUCT_ID, productId); | ||
} | ||
|
||
protected void addCategoryId(String categoryId) { | ||
addKeyVal(KEY_CATEGORY_ID, categoryId); | ||
} | ||
} |
126 changes: 0 additions & 126 deletions
126
...idsdkcommon/src/main/java/com/bazaarvoice/bvandroidsdk/jackson/rison/IdentifierUtils.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
...roidsdkcommon/src/main/java/com/bazaarvoice/bvandroidsdk/jackson/rison/ModuleVersion.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.