/**
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* https://opensso.dev.java.net/public/CDDLv1.0.html or
* opensso/legal/CDDLv1.0.txt
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at opensso/legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* $Id: LogXMLStrings.java,v 1.3 2008/06/25 05:43:39 qcheng Exp $
*
*/
package com.sun.identity.log.service;
/**
* This class defines constant values for logger service.
*
*/
public class LogXMLStrings {
/**
* Sting constant representing "logRecWrite"
*/
public static final String RECWRITE = "logRecWrite";
/**
* Sting constant representing "log"
*/
public static final String LOG = "log";
/**
* Sting constant representing "logRecord"
*/
public static final String LOGRECORD = "logRecord";
/**
* Sting constant representing "level"
*/
public static final String LEVEL = "level";
/**
* Sting constant representing "recMsg"
*/
public static final String MSG = "recMsg";
/**
* Sting constant representing "recType"
*/
public static final String RECTYPE = "recType";
/**
* Sting constant representing "logType"
*/
public static final String LOGTYPE = "logType";
/**
* Sting constant representing "logInfoMap"
*/
public static final String LOGINFOMAP = "logInfoMap";
/**
* Sting constant representing "logInfo"
*/
public static final String LOGINFO = "logInfo";
/**
* Sting constant representing "infoKey"
*/
public static final String INFOKEY = "infoKey";
/**
* Sting constant representing "infoValue"
*/
public static final String INFOVALUE = "infoValue";
/**
* Sting constant representing "parameters"
*/
public static final String PARAMETERS = "parameters";
/**
* Sting constant representing "parameter"
*/
public static final String PARAMETER = "parameter";
/**
* Sting constant representing "paramIndex"
*/
public static final String PARAMINDEX = "paramIndex";
/**
* Sting constant representing "paramValue"
*/
public static final String PARAMVALUE = "paramValue";
}