
org.bedework.calfacade.base.OwnedEntity 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!
package org.bedework.calfacade.base;
/**
* User: mike Date: 11/1/22 Time: 13:28
*/
public interface OwnedEntity {
/** Set the owner
*
* @param val String owner path of the entity e.g. /principals/users/jim
*/
void setOwnerHref(String val);
/**
*
* @return String owner of the entity
*/
String getOwnerHref();
/**
* @param val public/not public
*/
void setPublick(Boolean val);
/**
* @return Boolean true for public
*/
Boolean getPublick();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy