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

org.bedework.calfacade.svc.EnsureEntityExistsResult Maven / Gradle / Ivy

The newest version!
/* ********************************************************************
    Appropriate copyright notice
*/
package org.bedework.calfacade.svc;

import org.bedework.base.response.GetEntityResponse;

/** Returned to show if an entity was added. entity is set to retrieved entity
 *
 * @param 
 * User: mike Date: 3/9/21 Time: 11:31
 */
public class EnsureEntityExistsResult
        extends GetEntityResponse {
  private boolean added;

  /** Was added */
  public boolean isAdded() {
    return added;
  }

  public void setAdded(boolean added) {
    this.added = added;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy