src/org/sonews/acl/AuthInfoCommand.java
author cli
Sun Aug 29 17:28:58 2010 +0200 (2010-08-29)
changeset 35 ed84c8bdd87b
parent 21 org/sonews/acl/AuthInfoCommand.java@4b2c8bedb094
child 37 74139325d305
permissions -rw-r--r--
Moving source files into src/-subdir.
cli@20
     1
/*
cli@20
     2
 *   SONEWS News Server
cli@20
     3
 *   see AUTHORS for the list of contributors
cli@20
     4
 *
cli@20
     5
 *   This program is free software: you can redistribute it and/or modify
cli@20
     6
 *   it under the terms of the GNU General Public License as published by
cli@20
     7
 *   the Free Software Foundation, either version 3 of the License, or
cli@20
     8
 *   (at your option) any later version.
cli@20
     9
 *
cli@20
    10
 *   This program is distributed in the hope that it will be useful,
cli@20
    11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
cli@20
    12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
cli@20
    13
 *   GNU General Public License for more details.
cli@20
    14
 *
cli@20
    15
 *   You should have received a copy of the GNU General Public License
cli@20
    16
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
cli@20
    17
 */
cli@20
    18
cli@20
    19
package org.sonews.acl;
cli@20
    20
cli@21
    21
import java.io.IOException;
cli@21
    22
import org.sonews.daemon.NNTPConnection;
cli@21
    23
import org.sonews.daemon.command.Command;
cli@21
    24
import org.sonews.storage.StorageBackendException;
cli@21
    25
cli@20
    26
/**
cli@20
    27
 *
cli@20
    28
 * @author Christian Lins
cli@20
    29
 * @since sonews/1.1
cli@20
    30
 */
cli@21
    31
public class AuthInfoCommand implements Command
cli@20
    32
{
cli@20
    33
cli@21
    34
  @Override
cli@21
    35
  public String[] getSupportedCommandStrings()
cli@21
    36
  {
cli@21
    37
    throw new UnsupportedOperationException("Not supported yet.");
cli@21
    38
  }
cli@21
    39
cli@21
    40
  @Override
cli@21
    41
  public boolean hasFinished()
cli@21
    42
  {
cli@21
    43
    throw new UnsupportedOperationException("Not supported yet.");
cli@21
    44
  }
cli@21
    45
cli@21
    46
  @Override
cli@21
    47
  public String impliedCapability()
cli@21
    48
  {
cli@21
    49
    throw new UnsupportedOperationException("Not supported yet.");
cli@21
    50
  }
cli@21
    51
cli@21
    52
  @Override
cli@21
    53
  public boolean isStateful()
cli@21
    54
  {
cli@21
    55
    throw new UnsupportedOperationException("Not supported yet.");
cli@21
    56
  }
cli@21
    57
cli@21
    58
  @Override
cli@21
    59
  public void processLine(NNTPConnection conn, String line, byte[] rawLine) throws IOException, StorageBackendException
cli@21
    60
  {
cli@21
    61
    throw new UnsupportedOperationException("Not supported yet.");
cli@21
    62
  }
cli@21
    63
cli@20
    64
}