All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.enterprise.config.serverbeans.HttpAccessLog Maven / Gradle / Ivy

There is a newer version: 8.0.0-JDK17-M7
Show newest version
/*
 * Copyright (c) 2023 Contributors to the Eclipse Foundation
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package com.sun.enterprise.config.serverbeans;

import java.beans.PropertyVetoException;

import org.jvnet.hk2.config.Attribute;
import org.jvnet.hk2.config.Configured;
import org.jvnet.hk2.config.ConfigBeanProxy;

/**
 *
 */
@Configured
public interface HttpAccessLog extends ConfigBeanProxy {

    /**
     * Gets the value of the {@code logDirectory} property.
     *
     * 

Location of the access logs specified as a directory. This defaults to the * {@code domain.log-root}, which by default is {@code ${INSTANCE_ROOT}/logs}. * Hence, the default value for this attribute is {@code ${INSTANCE_ROOT}/logs/access}. * * @return possible object is {@link String} */ @Attribute(defaultValue = "access") String getLogDirectory(); /** * Sets the value of the {@code logDirectory} property. * * @param logDirectory allowed object is {@link String} */ void setLogDirectory(String logDirectory) throws PropertyVetoException; /** * Gets the value of the {@code iponly} property. * *

If the IP address of the user agent should be specified or a DNS lookup should be done. * * @return possible object is {@link String} */ @Attribute String getIponly(); /** * Sets the value of the {@code iponly} property. * * @param iponly allowed object is {@link String} */ void setIponly(String iponly) throws PropertyVetoException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy