Klasse Group

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

public class Group extends Object
Represents a logical Group within this newsserver.
Seit:
sonews/0.5.0
Autor:
Christian Lins
  • Felddetails

    • 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.
      Siehe auch:
    • 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.
      Siehe auch:
    • 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.
      Siehe auch:
    • 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.
      Siehe auch:
    • 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.
      Siehe auch:
    • allGroups

      private static List<Group> allGroups
    • allGroupNames

      private static Map<String,Group> allGroupNames
    • log

      private static final org.slf4j.Logger log
    • id

      private long id
    • flags

      private int flags
    • name

      private String name
  • Konstruktordetails

    • Group

      public Group(String name, long id, int flags)
      Constructor.
      Parameter:
      name -
      id -
      flags -
  • Methodendetails