
com.romanpierson.vertx.web.accesslogger.configuration.pattern.ResolvedPatternResult Maven / Gradle / Ivy
/*
* Copyright (c) 2016-2024 Roman Pierson
* ------------------------------------------------------
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License v2.0
* which accompanies this distribution.
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package com.romanpierson.vertx.web.accesslogger.configuration.pattern;
import java.util.Collection;
import com.romanpierson.vertx.web.accesslogger.configuration.element.AccessLogElement;
public class ResolvedPatternResult {
private final String resolvedPattern;
private final Collection logElements;
public ResolvedPatternResult(String resolvedPattern, Collection logElements) {
super();
this.resolvedPattern = resolvedPattern;
this.logElements = logElements;
}
public String getResolvedPattern() {
return resolvedPattern;
}
public Collection getLogElements() {
return logElements;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy