Class Post

java.lang.Object
org.forum.server.graphql.Post

@Entity public class Post extends Object
Author:
generated by graphql-java-generator
See Also:
  • Constructor Details

    • Post

      public Post()
      Object content, generated by the 'object_content.vm.java' default template from graphql-java-generator
  • Method Details

    • setId

      public void setId(Long id)
    • getId

      public Long getId()
    • setDate

      public void setDate(Date date)
    • getDate

      public Date getDate()
    • setAuthor

      public void setAuthor(Member author)
    • getAuthor

      public Member getAuthor()
    • setPubliclyAvailable

      public void setPubliclyAvailable(Boolean publiclyAvailable)
    • getPubliclyAvailable

      public Boolean getPubliclyAvailable()
    • setTitle

      public void setTitle(String title)
    • getTitle

      public String getTitle()
    • setContent

      public void setContent(String content)
    • getContent

      public String getContent()
    • setAuthorId

      public void setAuthorId(Long authorId)
    • getAuthorId

      public Long getAuthorId()
    • setTopicId

      public void setTopicId(Long topicId)
    • getTopicId

      public Long getTopicId()
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • builder

      public static Post.Builder builder()