*/
public Iterator<Category> getAllCategoriesIterator () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException;
- /**
- * Generates a link for category's parent category. If none is given, the method will return only a small
- * note.
- *
- * @param category Category instance
- * @return HTML link for category's parent category
- * @deprecated Old lost code
- */
- @Deprecated
- public String generateLinkForParent (final Category category);
-
- /**
- * Checks if given Product instance is available and returns a printable
- * (human-readable) string.
- *
- * @param product Product instance to check
- * @return Human-readable version of product availability
- * @deprecated Old lost code
- */
- @Deprecated
- public String getPrintableProductAvailability (final Product product);
-
- /**
- * Returns a printable (human-readable) string of product's category
- *
- * @param product Product instance to check
- * @return Human-readable version of product availability
- * @throws java.io.IOException If an IO error occurs
- * @throws java.sql.SQLException If an SQL error occurs
- * @throws java.lang.NoSuchMethodException If a method was not found
- * @throws java.lang.IllegalAccessException If the method cannot be accessed publicly
- * @throws java.lang.reflect.InvocationTargetException If something else happens?
- * @deprecated Old lost code
- */
- @Deprecated
- public String getPrintableProductCategory (final Product product) throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException;
-
/**
* Adds given category data from request to database
*
* @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the product's title is already used
*/
public void doAdminAddProduct (final Product product) throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, ProductTitleAlreadyUsedException;
-
- /**
- * Handles admin product form requests
- *
- * @throws java.io.IOException If an IO error occurs
- * @throws java.sql.SQLException If an SQL error occurs
- * @throws java.lang.NoSuchMethodException If a method was not found
- * @throws java.lang.IllegalAccessException If the method cannot be accessed publicly
- * @throws java.lang.reflect.InvocationTargetException If something else happens?
- * @throws org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the product's title is already used
- * @deprecated Old lost code
- */
- @Deprecated
- public void doAdminHandleProductForms () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, ProductTitleAlreadyUsedException;
-
- /**
- * Handles admin category form requests
- *
- * @throws java.io.IOException If an IO error occurs
- * @throws java.sql.SQLException If an SQL error occurs
- * @throws java.lang.NoSuchMethodException If a method was not found
- * @throws java.lang.IllegalAccessException If the method cannot be accessed publicly
- * @throws java.lang.reflect.InvocationTargetException If something else happens?
- * @throws org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException The category's title is already used
- * @deprecated
- */
- @Deprecated
- public void doAdminHandleCategoryForms () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, CategoryTitleAlreadyUsedException;
}
throw new UnsupportedOperationException("Not supported yet."); //NOI18N
}
- @Override
- @Deprecated
- public String getPrintableProductAvailability (final Product product) {
- // Trace message
- this.getLogger().trace(MessageFormat.format("product={0} - CALLED!", product)); //NOI18N
-
- // Is it null?
- if (null == product) {
- // Should not be null
- throw new NullPointerException("product is null"); //NOI18N
- }
-
- // Get availability
- if (product.getAvailable() == true) {
- // Is available
- return "Ja";
- } else {
- // Not, not for public
- return "Nein";
- }
- }
-
@Override
@SuppressWarnings ("unchecked")
public Iterator<Product> getAvailableProductsIterator () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
this.getLogger().trace("EXIT!"); //NOI18N
}
- @Override
- @Deprecated
- public String generateLinkForParent (final Category category) {
- // Trace message
- this.getLogger().trace(MessageFormat.format("category={0} - CALLED!", category)); //NOI18N
-
- // category must not be null
- if (null == category) {
- // Is null
- throw new NullPointerException("category is null"); //NOI18N
- }
-
- // Get parent id
- Long parentId = category.getParentId();
-
- // Is the id set?
- if (parentId > 0) {
- // Product HTML code for link
- throw new UnsupportedOperationException(MessageFormat.format("parentId={0} - Unfinished!", parentId)); //NOI18N
- }
-
- // No parent set
- return "Keine";
- }
-
- @Override
- @Deprecated
- public String getPrintableProductCategory (final Product product) throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
- // Trace message
- this.getLogger().trace(MessageFormat.format("product={0} - CALLED!", product)); //NOI18N
-
- // product must not be null
- if (null == product) {
- // Abort here
- throw new NullPointerException("product is null"); //NOI18N
- }
-
- // Declare category
- Category category = this.categoryFrontend.getCategory(product);
-
- // Debug message
- this.getLogger().debug(MessageFormat.format("categoryId={0}", category)); //NOI18N
-
- // Get decoded title
- String title = category.getDecodedTitle();
-
- // Trace message
- this.getLogger().trace(MessageFormat.format("title={0} - EXIT!", title)); //NOI18N
-
- // Return it
- return title;
- }
-
/**
* Checks if product's title is already used.
*
//return isUsed;
}
- @Override
- @Deprecated
- public void doAdminHandleProductForms () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, ProductTitleAlreadyUsedException {
- // Deprecated method called
- throw new UnsupportedOperationException("Deprecated method called.");
- }
-
- @Override
- @Deprecated
- public void doAdminHandleCategoryForms () throws IOException, SQLException, NoSuchMethodException, IllegalAccessException, InvocationTargetException, CategoryTitleAlreadyUsedException {
- // Deprecated method called
- throw new UnsupportedOperationException("Deprecated method called.");
- }
-
/**
* Checks if category's title is already used.
*