
org.bedework.calfacade.svc.SubscribeResult 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;
/**
* User: mike Date: 3/9/21 Time: 13:15
*/
public class SubscribeResult {
private String path;
private boolean alreadySubscribed;
/** Path to alias */
public String getPath() {
return path;
}
public void setPath(final String val) {
path = val;
}
/** True if user was already subscribed */
public boolean isAlreadySubscribed() {
return alreadySubscribed;
}
public void setAlreadySubscribed(final boolean val) {
alreadySubscribed = val;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy