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

org.eclipse.jetty.ee8.security.ConstraintMapping Maven / Gradle / Ivy

There is a newer version: 2.0.31
Show newest version
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
package org.eclipse.jetty.ee8.security;

import org.eclipse.jetty.ee8.nested.ServletConstraint;

public class ConstraintMapping {

    String _method;

    String[] _methodOmissions;

    String _pathSpec;

    ServletConstraint _constraint;

    /**
     * @return Returns the constraint.
     */
    public ServletConstraint getConstraint() {
        return _constraint;
    }

    /**
     * @param constraint The constraint to set.
     */
    public void setConstraint(ServletConstraint constraint) {
        this._constraint = constraint;
    }

    /**
     * @return Returns the method.
     */
    public String getMethod() {
        return _method;
    }

    /**
     * @param method The method to set.
     */
    public void setMethod(String method) {
        this._method = method;
    }

    /**
     * @return Returns the pathSpec.
     */
    public String getPathSpec() {
        return _pathSpec;
    }

    /**
     * @param pathSpec The pathSpec to set.
     */
    public void setPathSpec(String pathSpec) {
        this._pathSpec = pathSpec;
    }

    /**
     * @param omissions The http-method-omission
     */
    public void setMethodOmissions(String[] omissions) {
        _methodOmissions = omissions;
    }

    public String[] getMethodOmissions() {
        return _methodOmissions;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy