Literals.java

/*
 * Copyright 2016 The Lannister Project
 * 
 * Licensed 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 net.anyflow.lannister;

public class Literals {

	public static final String DEFAULT_CONTENT_TYPE = "application/x-www-form-urlencoded";
	public static final String JSON_CONTENT_TYPE = "application/json;charset=UTF-8";

	public static final String APPLICATION_JSON = "application/json";
	public static final String APPLICATION_XML = "application/xml";

	public static final String DATE_DEFAULT_FORMAT = "yy.MM.dd HH:mm:ss.SSS z";
	public static final String DATE_TIME_FORMAT = "HH:mm:ss.SSS";
	public static final String DATE_DEFAULT_TIMEZONE = "Asia/Seoul";

	public static final String NETTY_EPOLL = "epoll";
	public static final String NETTY_NIO = "NIO";
}