All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.commercetools.sync.customobjects.models.NoopResourceUpdateAction Maven / Gradle / Ivy

package com.commercetools.sync.customobjects.models;

import com.commercetools.api.models.ResourceUpdateAction;

/**
 * This class is a fake class that represents a CTP resource with no update actions. Such resource
 * is currently custom objects. Since they're exception, I created this class so that we can still
 * use a common BaseSyncOptions for all resources and do not have to break the whole generics just
 * because of the custom object inconsistency.
 */
public class NoopResourceUpdateAction implements ResourceUpdateAction {
  @Override
  public String getAction() {
    return null;
  }

  @Override
  public NoopResourceUpdateAction get() {
    return this;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy