001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.juneau.rest.annotation;
018
019/**
020 * Dummy class that indicates that serializers, parsers, or transforms for a Java class or method should not be inherited.
021 *
022 * <h5 class='section'>Example:</h5>
023 * <p class='bjava'>
024 *    <ja>@RestOp</ja>(
025 *
026 *       <jc>// No serializers are defined method or inherited from the class.</jc>
027 *       serializers=None.<jk>class</jk>,
028 *
029 *       <jc>// No parsers are defined method or inherited from the class.</jc>
030 *       parsers=None.<jk>class</jk>,
031 *
032 *       <jc>// No bean filters are defined method or inherited from the class.</jc>
033 *       beanFilters=None.<jk>class</jk>,
034 *
035 *       <jc>// No POJO swaps are defined method or inherited from the class.</jc>
036 *       swaps=None.<jk>class</jk>
037 *    )
038 * </p>
039 *
040 * <h5 class='section'>See Also:</h5><ul>
041 * </ul>
042 */
043public class None {}