author | František Kučera <franta-hg@frantovo.cz> |
Fri Oct 14 00:45:06 2011 +0200 (2011-10-14) | |
changeset 76 | b5690fc25af6 |
parent 37 | 74139325d305 |
permissions | -rwxr-xr-x |
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 |
package org.sonews.acl; |
cli@20 | 19 |
|
cli@21 | 20 |
import java.io.IOException; |
cli@21 | 21 |
import org.sonews.daemon.NNTPConnection; |
cli@21 | 22 |
import org.sonews.daemon.command.Command; |
cli@21 | 23 |
import org.sonews.storage.StorageBackendException; |
cli@21 | 24 |
|
cli@20 | 25 |
/** |
cli@20 | 26 |
* |
cli@20 | 27 |
* @author Christian Lins |
cli@20 | 28 |
* @since sonews/1.1 |
cli@20 | 29 |
*/ |
cli@49 | 30 |
public class AuthInfoCommand implements Command { |
cli@20 | 31 |
|
cli@37 | 32 |
@Override |
cli@49 | 33 |
public String[] getSupportedCommandStrings() { |
cli@37 | 34 |
throw new UnsupportedOperationException("Not supported yet."); |
cli@37 | 35 |
} |
cli@21 | 36 |
|
cli@37 | 37 |
@Override |
cli@49 | 38 |
public boolean hasFinished() { |
cli@37 | 39 |
throw new UnsupportedOperationException("Not supported yet."); |
cli@37 | 40 |
} |
cli@21 | 41 |
|
cli@37 | 42 |
@Override |
cli@49 | 43 |
public String impliedCapability() { |
cli@37 | 44 |
throw new UnsupportedOperationException("Not supported yet."); |
cli@37 | 45 |
} |
cli@21 | 46 |
|
cli@37 | 47 |
@Override |
cli@49 | 48 |
public boolean isStateful() { |
cli@37 | 49 |
throw new UnsupportedOperationException("Not supported yet."); |
cli@37 | 50 |
} |
cli@21 | 51 |
|
cli@37 | 52 |
@Override |
cli@37 | 53 |
public void processLine(NNTPConnection conn, String line, byte[] rawLine) |
cli@49 | 54 |
throws IOException, StorageBackendException { |
cli@37 | 55 |
throw new UnsupportedOperationException("Not supported yet."); |
cli@37 | 56 |
} |
cli@20 | 57 |
} |