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

org.mattressframework.api.annotations.Path Maven / Gradle / Ivy

Go to download

Public API to the Mattress framework. This is essentially what JSR 311 should be.

There is a newer version: 1.0.0-ALPHA4
Show newest version
/*
 * Copyright 2007-2008, Josh Devins.
 *
 * 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 org.mattressframework.api.annotations;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * An annotation marking that a resource bean or method is adding to the overall
 * endpoint path.
 * 
 * 

* This differs from JSR 311 in that we always assume paths need to be encoded. * Also, there is no "limited" field in our version, since it was deemed to be * overly complicated and unnecessary. See JSR 311 for further details. *

* * @author Josh Devins ([email protected]) */ @Documented @Inherited @Retention(RetentionPolicy.RUNTIME) @Target( { ElementType.TYPE, ElementType.METHOD }) public @interface Path { /** * Defines a URI template for the resource. Paths are relative to the base * URI of the container. */ String value(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy