Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. /*
  2. * [y] hybris Platform
  3. *
  4. * Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
  5. *
  6. * This software is the confidential and proprietary information of SAP
  7. * ("Confidential Information"). You shall not disclose such Confidential
  8. * Information and shall use it only in accordance with the terms of the
  9. * license agreement you entered into with SAP.
  10. */
  11. package com.sap.mansp.core.setup.impl;
  12.  
  13. import de.hybris.platform.commerceservices.setup.impl.DefaultSetupSyncJobService;
  14. import de.hybris.platform.servicelayer.cronjob.PerformResult;
  15.  
  16. public class ManspDefaultSetupSyncJobService extends DefaultSetupSyncJobService
  17. {
  18. @Override
  19. public PerformResult executeCatalogSyncJob(String catalogId)
  20. {
  21. return new PerformResult(null, null);
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement