Skip to content

Commit

Permalink
Add field to catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
olivere committed Dec 1, 2016
1 parent 566dc38 commit 7d06328
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 8 deletions.
16 changes: 16 additions & 0 deletions src/main/java/com/meplato/mall/catalogs/Catalog.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ public class Catalog {
private String selfLink;
@SerializedName("skipWorkArea")
private boolean skipWorkArea;
@SerializedName("storePin")
private String storePin;
@SerializedName("supportsOciBackgroundsearch")
private boolean supportsOciBackgroundsearch;
@SerializedName("supportsOciDetail")
Expand Down Expand Up @@ -320,6 +322,20 @@ public void setSkipWorkArea(boolean skipWorkArea) {
this.skipWorkArea = skipWorkArea;
}

/**
* StorePin is the unique PIN of the catalog.
*/
public String getStorePin() {
return this.storePin;
}

/**
* StorePin is the unique PIN of the catalog.
*/
public void setStorePin(String storePin) {
this.storePin = storePin;
}

/**
* SupportsOciBackgroundsearch indicates whether a catalog supports the OCI
* BACKGROUNDSEARCH transaction.
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/meplato/mall/catalogs/Service.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* @copyright 2014-2016 Meplato GmbH, Switzerland.
* @author Meplato API Team <[email protected]>
* @version 1.0.4
* @version 1.0.5
* @license Copyright (c) 2015 Meplato GmbH, Switzerland. All rights reserved.
* @see <a href="https://developer.meplato.com/mall/#terms">Terms of Service</a>
* @see <a href="https://developer.meplato.com/mall/">External documentation</a>
Expand All @@ -41,7 +41,7 @@ public class Service {
/** API title. */
public static String TITLE = "Meplato Mall API";
/** API version. */
public static String VERSION = "1.0.4";
public static String VERSION = "1.0.5";
/** User Agent. */
public static String USER_AGENT = "meplato-java-client/2.0";
/** Default base URL of the API endpoints. */
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/meplato/mall/mlt/Service.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* @copyright 2014-2016 Meplato GmbH, Switzerland.
* @author Meplato API Team <[email protected]>
* @version 1.0.4
* @version 1.0.5
* @license Copyright (c) 2015-2016 Meplato GmbH, Switzerland. All rights reserved.
* @see <a href="https://developer.meplato.com/mall/#terms">Terms of Service</a>
* @see <a href="https://developer.meplato.com/mall/">External documentation</a>
Expand All @@ -41,7 +41,7 @@ public class Service {
/** API title. */
public static String TITLE = "Meplato Mall API";
/** API version. */
public static String VERSION = "1.0.4";
public static String VERSION = "1.0.5";
/** User Agent. */
public static String USER_AGENT = "meplato-java-client/2.0";
/** Default base URL of the API endpoints. */
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/meplato/mall/products/Service.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* @copyright 2014-2016 Meplato GmbH, Switzerland.
* @author Meplato API Team <[email protected]>
* @version 1.0.4
* @version 1.0.5
* @license Copyright (c) 2015-2016 Meplato GmbH, Switzerland. All rights reserved.
* @see <a href="https://developer.meplato.com/mall/#terms">Terms of Service</a>
* @see <a href="https://developer.meplato.com/mall/">External documentation</a>
Expand All @@ -41,7 +41,7 @@ public class Service {
/** API title. */
public static String TITLE = "Meplato Mall API";
/** API version. */
public static String VERSION = "1.0.4";
public static String VERSION = "1.0.5";
/** User Agent. */
public static String USER_AGENT = "meplato-java-client/2.0";
/** Default base URL of the API endpoints. */
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/meplato/mall/vendors/Service.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*
* @copyright 2014-2016 Meplato GmbH, Switzerland.
* @author Meplato API Team <[email protected]>
* @version 1.0.4
* @version 1.0.5
* @license Copyright (c) 2015-2016 Meplato GmbH, Switzerland. All rights reserved.
* @see <a href="https://developer.meplato.com/mall/#terms">Terms of Service</a>
* @see <a href="https://developer.meplato.com/mall/">External documentation</a>
Expand All @@ -41,7 +41,7 @@ public class Service {
/** API title. */
public static String TITLE = "Meplato Mall API";
/** API version. */
public static String VERSION = "1.0.4";
public static String VERSION = "1.0.5";
/** User Agent. */
public static String USER_AGENT = "meplato-java-client/2.0";
/** Default base URL of the API endpoints. */
Expand Down

0 comments on commit 7d06328

Please sign in to comment.