Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ public interface ProductData extends ProductDataLike {
public LocalizedString getSlug();

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @return metaTitle
*/
@Valid
@JsonProperty("metaTitle")
public LocalizedString getMetaTitle();

/**
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
* <p>Description of the Product as used by search engines.</p>
* @return metaDescription
*/
@Valid
Expand Down Expand Up @@ -178,14 +178,14 @@ public interface ProductData extends ProductDataLike {
public void setSlug(final LocalizedString slug);

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @param metaTitle value to be set
*/

public void setMetaTitle(final LocalizedString metaTitle);

/**
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
* <p>Description of the Product as used by search engines.</p>
* @param metaDescription value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public ProductDataBuilder slug(final com.commercetools.api.models.common.Localiz
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -300,7 +300,7 @@ public ProductDataBuilder metaTitle(
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -312,7 +312,7 @@ public ProductDataBuilder withMetaTitle(
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @param metaTitle value to be set
* @return Builder
*/
Expand All @@ -323,7 +323,7 @@ public ProductDataBuilder metaTitle(@Nullable final com.commercetools.api.models
}

/**
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
* <p>Description of the Product as used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -335,7 +335,7 @@ public ProductDataBuilder metaDescription(
}

/**
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
* <p>Description of the Product as used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -347,7 +347,7 @@ public ProductDataBuilder withMetaDescription(
}

/**
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
* <p>Description of the Product as used by search engines.</p>
* @param metaDescription value to be set
* @return Builder
*/
Expand Down Expand Up @@ -599,7 +599,7 @@ public com.commercetools.api.models.common.LocalizedString getSlug() {
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @return metaTitle
*/

Expand All @@ -609,7 +609,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
}

/**
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
* <p>Description of the Product as used by search engines.</p>
* @return metaDescription
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ public com.commercetools.api.models.common.LocalizedString getSlug() {
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
return this.metaTitle;
}

/**
* <p>Description of the Product as displayed in search engine results below the meta title.</p>
* <p>Description of the Product as used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaDescription() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ public interface ProductDraft
public CategoryOrderHints getCategoryOrderHints();

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @return metaTitle
*/
@Valid
@JsonProperty("metaTitle")
public LocalizedString getMetaTitle();

/**
* <p>Description of the Product as displayed in search engine results.</p>
* <p>Description of the Product as used by search engines.</p>
* @return metaDescription
*/
@Valid
Expand Down Expand Up @@ -242,14 +242,14 @@ public interface ProductDraft
public void setCategoryOrderHints(final CategoryOrderHints categoryOrderHints);

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @param metaTitle value to be set
*/

public void setMetaTitle(final LocalizedString metaTitle);

/**
* <p>Description of the Product as displayed in search engine results.</p>
* <p>Description of the Product as used by search engines.</p>
* @param metaDescription value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ public ProductDraftBuilder categoryOrderHints(
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -374,7 +374,7 @@ public ProductDraftBuilder metaTitle(
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -386,7 +386,7 @@ public ProductDraftBuilder withMetaTitle(
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @param metaTitle value to be set
* @return Builder
*/
Expand All @@ -398,7 +398,7 @@ public ProductDraftBuilder metaTitle(
}

/**
* <p>Description of the Product as displayed in search engine results.</p>
* <p>Description of the Product as used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -410,7 +410,7 @@ public ProductDraftBuilder metaDescription(
}

/**
* <p>Description of the Product as displayed in search engine results.</p>
* <p>Description of the Product as used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -422,7 +422,7 @@ public ProductDraftBuilder withMetaDescription(
}

/**
* <p>Description of the Product as displayed in search engine results.</p>
* <p>Description of the Product as used by search engines.</p>
* @param metaDescription value to be set
* @return Builder
*/
Expand Down Expand Up @@ -798,7 +798,7 @@ public com.commercetools.api.models.product.CategoryOrderHints getCategoryOrderH
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
* @return metaTitle
*/

Expand All @@ -808,7 +808,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
}

/**
* <p>Description of the Product as displayed in search engine results.</p>
* <p>Description of the Product as used by search engines.</p>
* @return metaDescription
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,15 +162,15 @@ public com.commercetools.api.models.product.CategoryOrderHints getCategoryOrderH
}

/**
* <p>Title of the Product as displayed in search engine results.</p>
* <p>Title of the Product as used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
return this.metaTitle;
}

/**
* <p>Description of the Product as displayed in search engine results.</p>
* <p>Description of the Product as used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaDescription() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ public interface ProductTailoringData {
public LocalizedString getDescription();

/**
* <p>Tailored title of the Product as displayed in search engine results.</p>
* <p>Tailored title of the Product as used by search engines.</p>
* @return metaTitle
*/
@Valid
@JsonProperty("metaTitle")
public LocalizedString getMetaTitle();

/**
* <p>Tailored description of the Product as displayed in search engine results.</p>
* <p>Tailored description of the Product as used by search engines.</p>
* @return metaDescription
*/
@Valid
Expand Down Expand Up @@ -103,14 +103,14 @@ public interface ProductTailoringData {
public void setDescription(final LocalizedString description);

/**
* <p>Tailored title of the Product as displayed in search engine results.</p>
* <p>Tailored title of the Product as used by search engines.</p>
* @param metaTitle value to be set
*/

public void setMetaTitle(final LocalizedString metaTitle);

/**
* <p>Tailored description of the Product as displayed in search engine results.</p>
* <p>Tailored description of the Product as used by search engines.</p>
* @param metaDescription value to be set
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public ProductTailoringDataBuilder description(
}

/**
* <p>Tailored title of the Product as displayed in search engine results.</p>
* <p>Tailored title of the Product as used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -128,7 +128,7 @@ public ProductTailoringDataBuilder metaTitle(
}

/**
* <p>Tailored title of the Product as displayed in search engine results.</p>
* <p>Tailored title of the Product as used by search engines.</p>
* @param builder function to build the metaTitle value
* @return Builder
*/
Expand All @@ -140,7 +140,7 @@ public ProductTailoringDataBuilder withMetaTitle(
}

/**
* <p>Tailored title of the Product as displayed in search engine results.</p>
* <p>Tailored title of the Product as used by search engines.</p>
* @param metaTitle value to be set
* @return Builder
*/
Expand All @@ -152,7 +152,7 @@ public ProductTailoringDataBuilder metaTitle(
}

/**
* <p>Tailored description of the Product as displayed in search engine results.</p>
* <p>Tailored description of the Product as used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -164,7 +164,7 @@ public ProductTailoringDataBuilder metaDescription(
}

/**
* <p>Tailored description of the Product as displayed in search engine results.</p>
* <p>Tailored description of the Product as used by search engines.</p>
* @param builder function to build the metaDescription value
* @return Builder
*/
Expand All @@ -176,7 +176,7 @@ public ProductTailoringDataBuilder withMetaDescription(
}

/**
* <p>Tailored description of the Product as displayed in search engine results.</p>
* <p>Tailored description of the Product as used by search engines.</p>
* @param metaDescription value to be set
* @return Builder
*/
Expand Down Expand Up @@ -372,7 +372,7 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
}

/**
* <p>Tailored title of the Product as displayed in search engine results.</p>
* <p>Tailored title of the Product as used by search engines.</p>
* @return metaTitle
*/

Expand All @@ -382,7 +382,7 @@ public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
}

/**
* <p>Tailored description of the Product as displayed in search engine results.</p>
* <p>Tailored description of the Product as used by search engines.</p>
* @return metaDescription
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ public com.commercetools.api.models.common.LocalizedString getDescription() {
}

/**
* <p>Tailored title of the Product as displayed in search engine results.</p>
* <p>Tailored title of the Product as used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaTitle() {
return this.metaTitle;
}

/**
* <p>Tailored description of the Product as displayed in search engine results.</p>
* <p>Tailored description of the Product as used by search engines.</p>
*/

public com.commercetools.api.models.common.LocalizedString getMetaDescription() {
Expand Down
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -325,3 +325,4 @@ d410bad973f2fe90ea8239c4cb586fe0cfc13856
ccf4522140c12b0093aefe0e2a27d62bcc4834a6
6bb8d35316a92441d0a59417b49ad3a8c7037e45
07b822efee634159a97f9ba24f86114b984d8d4c
8e09aa861a0ba58755289bc185dcb268ac4f1c13
Loading