1a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair/*
2a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * Copyright 2008 the original author or authors.
3a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair *
4a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * Licensed under the Apache License, Version 2.0 (the "License");
5a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * you may not use this file except in compliance with the License.
6a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * You may obtain a copy of the License at
7a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair *
8a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair *      http://www.apache.org/licenses/LICENSE-2.0
9a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair *
10a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * Unless required by applicable law or agreed to in writing, software
11a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * distributed under the License is distributed on an "AS IS" BASIS,
12a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * See the License for the specific language governing permissions and
14a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * limitations under the License.
15a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair */
16a0ad464efff5f5e2d2523a3522cce6823ce05858chrismairpackage org.mockftpserver.core.session;
17a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair
18a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair/**
19a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair * Constants for names of properties (attributes) stored in the session.
20a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair */
21a0ad464efff5f5e2d2523a3522cce6823ce05858chrismairpublic class SessionKeys {
22a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair
23a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair    public static final String USERNAME = "username";
24a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair    public static final String USER_ACCOUNT = "userAccount";
25a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair    public static final String CURRENT_DIRECTORY = "currentDirectory";
26a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair    public static final String RENAME_FROM = "renameFrom";
27a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair    public static final String ACCOUNT_NAME = "accountName";
28a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair    public static final String ASCII_TYPE = "asciiType";
29a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair
30a0ad464efff5f5e2d2523a3522cce6823ce05858chrismair}