org/sonews/acl/AuthInfoCommand.java
changeset 21 4b2c8bedb094
parent 20 6ae5e4f8329b
     1.1 --- a/org/sonews/acl/AuthInfoCommand.java	Mon Aug 24 13:00:05 2009 +0200
     1.2 +++ b/org/sonews/acl/AuthInfoCommand.java	Mon Aug 24 14:40:37 2009 +0200
     1.3 @@ -18,12 +18,47 @@
     1.4  
     1.5  package org.sonews.acl;
     1.6  
     1.7 +import java.io.IOException;
     1.8 +import org.sonews.daemon.NNTPConnection;
     1.9 +import org.sonews.daemon.command.Command;
    1.10 +import org.sonews.storage.StorageBackendException;
    1.11 +
    1.12  /**
    1.13   *
    1.14   * @author Christian Lins
    1.15   * @since sonews/1.1
    1.16   */
    1.17 -public class AuthInfoCommand
    1.18 +public class AuthInfoCommand implements Command
    1.19  {
    1.20  
    1.21 +  @Override
    1.22 +  public String[] getSupportedCommandStrings()
    1.23 +  {
    1.24 +    throw new UnsupportedOperationException("Not supported yet.");
    1.25 +  }
    1.26 +
    1.27 +  @Override
    1.28 +  public boolean hasFinished()
    1.29 +  {
    1.30 +    throw new UnsupportedOperationException("Not supported yet.");
    1.31 +  }
    1.32 +
    1.33 +  @Override
    1.34 +  public String impliedCapability()
    1.35 +  {
    1.36 +    throw new UnsupportedOperationException("Not supported yet.");
    1.37 +  }
    1.38 +
    1.39 +  @Override
    1.40 +  public boolean isStateful()
    1.41 +  {
    1.42 +    throw new UnsupportedOperationException("Not supported yet.");
    1.43 +  }
    1.44 +
    1.45 +  @Override
    1.46 +  public void processLine(NNTPConnection conn, String line, byte[] rawLine) throws IOException, StorageBackendException
    1.47 +  {
    1.48 +    throw new UnsupportedOperationException("Not supported yet.");
    1.49 +  }
    1.50 +
    1.51  }