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

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

Best Java code snippets using org.bedework.calfacade.BwEvent.setEntityType (Showing top 7 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 void setEntityType(int val) {
 entity.setEntityType(val);
}
origin: org.bedework.caleng/bw-calendar-engine-ical

private static EventInfo makeNewEvent(final IcalCallback cb,
                   final int entityType,
                   final String uid,
                   final String colPath) throws CalFacadeException {
 final BwEvent ev = new BwEventObj();
 final EventInfo evinfo = new EventInfo(ev);
 //ev.setDtstamps();
 ev.setEntityType(entityType);
 ev.setCreatorHref(cb.getPrincipal().getPrincipalRef());
 ev.setOwnerHref(cb.getOwner().getPrincipalRef());
 ev.setUid(uid);
 ev.setColPath(colPath);
 final ChangeTable chg = evinfo.getChangeset(cb.getPrincipal().getPrincipalRef());
 chg.changed(PropertyInfoIndex.UID, null, uid); // get that out of the way
 evinfo.setNewEvent(true);
 return evinfo;
}
origin: org.bedework.caleng/bw-calendar-engine-ical

fb.setEntityType(IcalDefs.entityTypeFreeAndBusy);
origin: org.bedework.caleng/bw-calendar-engine-facade

res.setEntityType(getEntityType());
res.setColPath(getColPath());
res.setName(getName());
origin: org.bedework.caleng/bw-calendar-engine-facade

fbreq.setEntityType(IcalDefs.entityTypeFreeAndBusy);
fbreq.setRecipients(recipients);
fbreq.setOrganizer(organizer);
origin: org.bedework.caleng/bw-calendar-engine-facade

/**
 * @return a copy suitable for tombstoning.
 */
@NoProxy
public BwEvent cloneTombstone() {
 final BwEvent ev = new BwEventObj();
 super.copyTo(ev);
 ev.setEntityType(getEntityType());
 ev.setName(getName());
 ev.setDtstart(getDtstart());
 ev.setDtend(getDtend());
 ev.setEndType(getEndType());
 ev.setDuration(getDuration());
 ev.setNoStart(getNoStart());
 ev.setDeleted(getDeleted());
 ev.setDtstamp(getDtstamp());
 ev.setLastmod(getLastmod());
 ev.setCreated(getCreated());
 ev.setStag(getStag());
 ev.setUid(getUid());
 ev.setRecurring(false);
 ev.setTombstoned(true);
 //ev.setDtstamps();
 return ev;
}
origin: org.bedework.caleng/bw-calendar-engine-facade

public void copyTo(final BwEvent ev) {
 super.copyTo(ev);
 ev.setEntityType(getEntityType());
 ev.setName(getName());
 ev.setClassification(getClassification());
org.bedework.calfacadeBwEventsetEntityType

Javadoc

Set entity type defined in IcalDefs

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

  • Updating database using SQL prepared statement
  • getResourceAsStream (ClassLoader)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • getSharedPreferences (Context)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
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