Class Group

java.lang.Object
org.sonews.storage.Group

public class Group extends Object
Represents a logical Group within this newsserver.
Since:
sonews/0.5.0
Author:
Christian Lins
  • Field Details

    • MAILINGLIST

      public static final int MAILINGLIST
      If this flag is set the Group is no real newsgroup but a mailing list mirror. In that case every posting and receiving mails must go through the mailing list gateway.
      See Also:
    • READONLY

      public static final int READONLY
      If this flag is set the Group is marked as readonly and the posting is prohibited. This can be useful for groups that are synced only in one direction.
      See Also:
    • PRIVATE

      public static final int PRIVATE
      If this flag is set the Group is considered private and only visible to clients of the private clients access list.
      See Also:
    • LOCALE

      public static final int LOCALE
      If this flag is set the Group is local to this server, i.e., the news are not peered.
      See Also:
    • DELETED

      public static final int DELETED
      If this flag is set the Group is marked as deleted and must not occur in any output. The deletion is done lazily by a low priority daemon.
      See Also:
  • Constructor Details

    • Group

      public Group(String name, long id, int flags)
      Constructor.
      Parameters:
      name -
      id -
      flags -
  • Method Details