You are here

class UserDeveloperConversionResult in Apigee Edge 8

Base class for user-developer conversion results.

@internal

Hierarchy

Expanded class hierarchy of UserDeveloperConversionResult

File

src/Structure/UserDeveloperConversionResult.php, line 28

Namespace

Drupal\apigee_edge\Structure
View source
class UserDeveloperConversionResult {

  /**
   * Number of successfully applied _necessary_ changes.
   *
   * @var int
   */
  protected $successfullyAppliedChanges;

  /**
   * Problems occurred meanwhile the conversion.
   *
   * @var \Drupal\apigee_edge\Exception\UserDeveloperConversionException[]
   */
  protected $problems;

  /**
   * UserDeveloperConversionResult constructor.
   *
   * @param int $successfully_applied_changes
   *   Number of successfully applied _necessary_ changes.
   *   (It should not contains redundant changes, ex.: when the property value
   *   has not changed.)
   * @param \Drupal\apigee_edge\Exception\UserDeveloperConversionException[] $problems
   *   Problems occurred meanwhile the conversion (ex.: field validation errors,
   *   etc.)
   */
  public function __construct(int $successfully_applied_changes, array $problems = []) {
    $this->successfullyAppliedChanges = $successfully_applied_changes;
    $this->problems = $problems;
  }

  /**
   * Number of _necessary_ changes that were successfully applied.
   *
   * @return int
   *   Number of changes.
   */
  public function getSuccessfullyAppliedChanges() : int {
    return $this->successfullyAppliedChanges;
  }

  /**
   * Problems occurred meanwhile the conversion.
   *
   * @return \Drupal\apigee_edge\Exception\UserDeveloperConversionException[]
   *   Array of problems.
   */
  public function getProblems() : array {
    return $this->problems;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
UserDeveloperConversionResult::$problems protected property Problems occurred meanwhile the conversion.
UserDeveloperConversionResult::$successfullyAppliedChanges protected property Number of successfully applied _necessary_ changes.
UserDeveloperConversionResult::getProblems public function Problems occurred meanwhile the conversion.
UserDeveloperConversionResult::getSuccessfullyAppliedChanges public function Number of _necessary_ changes that were successfully applied.
UserDeveloperConversionResult::__construct public function UserDeveloperConversionResult constructor. 2