
org.bedework.calfacade.svc.RealiasResult 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.calfacade.BwCategory;
import org.bedework.base.response.Response;
import java.util.Set;
/**
* User: mike Date: 3/9/21 Time: 11:27
*/
public class RealiasResult extends Response {
private final Set cats;
public RealiasResult(final Set cats) {
this.cats = cats;
}
public Set getCats() {
return cats;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy