Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CIF-1220: Fix CQBP-84 violation for Venia Reference #261

Merged
merged 2 commits into from
May 6, 2020
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 @@ -14,12 +14,9 @@

package com.adobe.cq.commerce.core.components.models;

import org.osgi.annotation.versioning.ProviderType;

/**
* API for the Hero Image component
*/
@ProviderType
public interface HeroImage {
String getClassList();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,12 @@

import java.util.List;

import org.osgi.annotation.versioning.ProviderType;

import com.adobe.cq.commerce.core.components.models.retriever.AbstractCategoriesRetriever;
import com.adobe.cq.commerce.magento.graphql.CategoryTree;

/**
* Provides the list of categories to CategoryList Componenet.
*/
@ProviderType
public interface FeaturedCategoryList {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,12 @@

import java.util.List;

import org.osgi.annotation.versioning.ProviderType;

import com.adobe.cq.commerce.core.components.models.common.Price;
import com.adobe.cq.commerce.core.components.models.retriever.AbstractProductRetriever;

/**
* Product is the sling model interface for the CIF core product component.
*/
@ProviderType
public interface Product {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,9 @@

import javax.annotation.Nonnull;

import org.osgi.annotation.versioning.ProviderType;

import com.adobe.cq.commerce.core.components.models.common.ProductListItem;
import com.adobe.cq.commerce.core.components.models.retriever.AbstractProductsRetriever;

@ProviderType
public interface ProductCarousel {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,10 @@
import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import org.osgi.annotation.versioning.ProviderType;

import com.adobe.cq.commerce.core.components.models.common.ProductListItem;
import com.adobe.cq.commerce.core.components.models.retriever.AbstractCategoryRetriever;
import com.adobe.cq.commerce.core.search.models.SearchResultsSet;

@ProviderType
public interface ProductList {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,12 @@

package com.adobe.cq.commerce.core.components.models.productteaser;

import org.osgi.annotation.versioning.ProviderType;

import com.adobe.cq.commerce.core.components.models.common.Price;
import com.adobe.cq.commerce.core.components.models.retriever.AbstractProductRetriever;

/**
* Product Teaser is the sling model interface for the CIF Teaser component.
*/
@ProviderType
public interface ProductTeaser {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,13 @@

import javax.annotation.Nonnull;

import org.osgi.annotation.versioning.ProviderType;

import com.adobe.cq.commerce.core.components.models.common.ProductListItem;
import com.adobe.cq.commerce.core.search.models.SearchAggregation;
import com.adobe.cq.commerce.core.search.models.SearchResultsSet;

/**
* Don't forget the comment
*/
@ProviderType
public interface SearchResults {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@

package com.adobe.cq.commerce.core.components.models.storeconfigexporter;

import org.osgi.annotation.versioning.ProviderType;

@ProviderType
public interface StoreConfigExporter {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@

package com.adobe.cq.commerce.core.components.models.teaser;

import org.osgi.annotation.versioning.ProviderType;

import com.adobe.cq.wcm.core.components.models.Teaser;

@ProviderType
public interface CommerceTeaser extends Teaser {

/**
Expand Down