src/org/sonews/acl/AuthInfoCommand.java
author cli
Sun Aug 29 18:17:37 2010 +0200 (2010-08-29)
changeset 37 74139325d305
parent 35 ed84c8bdd87b
child 49 8df94bfd3e2f
permissions -rw-r--r--
Switch intent style to Original K&R / Linux / Kernel.
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@37
    34
	@Override
cli@37
    35
	public String[] getSupportedCommandStrings()
cli@37
    36
	{
cli@37
    37
		throw new UnsupportedOperationException("Not supported yet.");
cli@37
    38
	}
cli@21
    39
cli@37
    40
	@Override
cli@37
    41
	public boolean hasFinished()
cli@37
    42
	{
cli@37
    43
		throw new UnsupportedOperationException("Not supported yet.");
cli@37
    44
	}
cli@21
    45
cli@37
    46
	@Override
cli@37
    47
	public String impliedCapability()
cli@37
    48
	{
cli@37
    49
		throw new UnsupportedOperationException("Not supported yet.");
cli@37
    50
	}
cli@21
    51
cli@37
    52
	@Override
cli@37
    53
	public boolean isStateful()
cli@37
    54
	{
cli@37
    55
		throw new UnsupportedOperationException("Not supported yet.");
cli@37
    56
	}
cli@21
    57
cli@37
    58
	@Override
cli@37
    59
	public void processLine(NNTPConnection conn, String line, byte[] rawLine)
cli@37
    60
		throws IOException, StorageBackendException
cli@37
    61
	{
cli@37
    62
		throw new UnsupportedOperationException("Not supported yet.");
cli@37
    63
	}
cli@20
    64
}