blob: ce5c42a510043d78dbd1c4c546d1b19cfbe96e31 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.synapse.transport.nhttp;
/**
* Constants used in the Access Class
*/
public class AccessConstants {
/**
* Pattern used to log - Default is COMBINED_PATTERN given below.
*/
public static final String COMBINED_PATTERN =
"%h %l %u %t \"%r\" %s %b \"%{Referer}i\" \"%{User-Agent}i\"";
/**
* The set of month abbreviations for log messages.
*/
public static final String MONTHS[] =
{"Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
/**
* The directory in which log files are created.
*/
public static final String DIRECTORY = "logs";
/**
* Gives the format of the date to be appended to the name of the access log file.
*/
public static final String FILE_FORMAT = "yyyy-MM-dd";
/**
* The prefix that is added to log file file names.
*/
public static final String PREFIX = "http_access_";
/**
* The suffix that is added to log file file names.
*/
public static final String SUFFIX = ".log";
}