Package net.pterodactylus.sone.database

Examples of net.pterodactylus.sone.database.PostBuilder.from()


    if (!sone.isLocal()) {
      logger.log(Level.FINE, String.format("Tried to create post for non-local Sone: %s", sone));
      return null;
    }
    PostBuilder postBuilder = database.newPostBuilder();
    postBuilder.from(sone.getId()).randomId().withTime(time).withText(text.trim());
    if (recipient.isPresent()) {
      postBuilder.to(recipient.get().getId());
    }
    final Post post = postBuilder.build();
    database.storePost(post);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.