1c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair/*
2c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * Copyright 2007 the original author or authors.
3c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair *
4c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * Licensed under the Apache License, Version 2.0 (the "License");
5c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * you may not use this file except in compliance with the License.
6c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * You may obtain a copy of the License at
7c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair *
8c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair *      http://www.apache.org/licenses/LICENSE-2.0
9c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair *
10c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * Unless required by applicable law or agreed to in writing, software
11c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * distributed under the License is distributed on an "AS IS" BASIS,
12c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * See the License for the specific language governing permissions and
14c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * limitations under the License.
15c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair */
16c1de24f1bfa6699e54b069e300af5e4246b34a34chrismairpackage org.mockftpserver.stub.command;
17c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair
18c1de24f1bfa6699e54b069e300af5e4246b34a34chrismairimport org.mockftpserver.core.command.AbstractStaticReplyCommandHandler;
19c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair
20c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair/**
21c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * The abstract superclass for CommandHandler classes for the {@link org.mockftpserver.stub.StubFtpServer}.
22c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * <p>
23c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * Subclasses can optionally override the reply code and/or text for the reply by calling
24c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * {@link #setReplyCode(int)}, {@link #setReplyMessageKey(String)} and {@link #setReplyText(String)}.
25c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair *
26c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * @author Chris Mair
27c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair * @version $Revision$ - $Date$
28c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair */
29c1de24f1bfa6699e54b069e300af5e4246b34a34chrismairpublic abstract class AbstractStubCommandHandler extends AbstractStaticReplyCommandHandler {
30c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair
31c1de24f1bfa6699e54b069e300af5e4246b34a34chrismair}
32