Codota Logo
BwEvent.getOwnerHref
Code IndexAdd Codota to your IDE (free)

How to use
getOwnerHref
method
in
org.bedework.calfacade.BwEvent

Best Java code snippets using org.bedework.calfacade.BwEvent.getOwnerHref (Showing top 8 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Connection c =
  • Codota IconDataSource dataSource;dataSource.getConnection()
  • Codota IconString url;DriverManager.getConnection(url)
  • Codota IconIdentityDatabaseUtil.getDBConnection()
  • Smart code suggestions by Codota
}
origin: org.bedework.caleng/bw-calendar-engine-facade

public String getOwnerHref() {
 return entity.getOwnerHref();
}
origin: org.bedework.caleng/bw-calendar-engine-facade

public void setOwnerHref(String val) {
 if (!CalFacadeUtil.eqObjval(getTarget().getOwnerHref(), val)) {
  ref.setOwnerHref(val);
  setChangeFlag(true);
 }
}
origin: org.bedework.caleng/bw-calendar-engine-facade

/** Get the event's transparency
 * @param userHref or null
 *
 * @return String   the event's transparency
 * @throws CalFacadeException
 */
@NoProxy
public String getPeruserTransparency(final String userHref) throws CalFacadeException {
 if ((userHref == null) ||
     userHref.equals(getOwnerHref())) {
  return getTransparency();
 }
 final BwXproperty pu = findPeruserXprop(userHref, BwXproperty.peruserPropTransp);
 if (pu == null) {
  return getTransparency();
 }
 return pu.getValue();
}
origin: org.bedework.caleng/bw-calendar-engine-facade

/** If this is the owner - set the real transparency, otherwise, if it differs
 * from the rwal add an x-prop
 *
 * @param userHref
 * @param val
 * @return non-null if x-prop is added for this user
 * @throws CalFacadeException
 */
@NoProxy
public BwXproperty setPeruserTransparency(final String userHref,
                     final String val) throws CalFacadeException {
 if (userHref.equals(getOwnerHref())) {
  setTransparency(val);
  return null;
 }
 BwXproperty pu = findPeruserXprop(userHref, BwXproperty.peruserPropTransp);
 if (pu == null) {
  pu = new BwXproperty(BwXproperty.peruserPropTransp,
             BwXproperty.peruserOwnerParam + "=" + userHref,
             val);
  addXproperty(pu);
  return pu;
 }
 pu.setValue(val);
 return null;
}
origin: org.bedework.caleng/bw-calendar-engine-ical

private static void processAvailable(final IcalCallback cb,
                   final BwCalendar cal,
                   final Icalendar ical,
                   final VAvailability val,
                   final EventInfo vavail) throws CalFacadeException {
 try {
  final ComponentList avls = val.getAvailable();
  if ((avls == null) || avls.isEmpty()) {
   return;
  }
  for (final Object o : avls) {
   if (!(o instanceof Available)) {
    throw new IcalMalformedException("Invalid available list");
   }
   final EventInfo availi = toEvent(cb, cal, ical, (Component)o,
                    true,
                    false);
   availi.getEvent().setOwnerHref(
       vavail.getEvent().getOwnerHref());
   vavail.addContainedItem(availi);
   vavail.getEvent().addAvailableUid(availi.getEvent().getUid());
  }
 } catch (final CalFacadeException cfe) {
  throw cfe;
 } catch (final Throwable t) {
  throw new CalFacadeException(t);
 }
}
origin: org.bedework.caleng/bw-calendar-engine-facade

 ann.setOwnerHref(ownerHref);
} else {
 ann.setOwnerHref(ev.getOwnerHref());
origin: org.bedework.caleng/bw-calendar-engine-facade

res.setOwnerHref(getOwnerHref());
origin: org.bedework.caleng/bw-calendar-engine-facade

return stringMatch(ev.getOwnerHref(), val);
org.bedework.calfacadeBwEventgetOwnerHref

Popular methods of BwEvent

  • addAttendee
  • addAvailableUid
    Add as available uid
  • addCategory
  • addComment
  • addContact
  • addFreeBusyPeriod
    Add a free/busy component
  • addPollItem
    Add vpoll item
  • addRdate
  • addVvoter
    Add vpoll vvoter
  • clearPollItems
    Clear the vpoll items
  • clearVvoters
    Clear the vpoll voters
  • compare
  • clearVvoters,
  • compare,
  • findDescription,
  • findSummary,
  • getAlarms,
  • getAttachments,
  • getAttendees,
  • getBusyType,
  • getCategories,
  • getClassification

Popular in Java

  • Making http requests using okhttp
  • setScale (BigDecimal)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • orElseThrow (Optional)
  • Point (java.awt)
    A point representing a location in (x, y) coordinate space, specified in integer precision.
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Dictionary (java.util)
    The Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to valu
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now