
org.bedework.calfacade.svc.EnsureEntityExistsResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw-calendar-facade Show documentation
Show all versions of bw-calendar-facade Show documentation
Common calendar classes and code for bedework
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