Add ApiPath.empty()
[netconf.git] / restconf / restconf-nb / src / main / java / org / opendaylight / restconf / server / spi / RestconfServerConfiguration.java
1 /*
2  * Copyright (c) 2024 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.restconf.server.spi;
9
10 import org.opendaylight.restconf.api.query.PrettyPrintParam;
11 import org.opendaylight.restconf.server.api.RestconfServer;
12 import org.osgi.service.metatype.annotations.AttributeDefinition;
13 import org.osgi.service.metatype.annotations.ObjectClassDefinition;
14
15 /**
16  * OSGi configuration of a typical {@link RestconfServer}.
17  */
18 @ObjectClassDefinition
19 public @interface RestconfServerConfiguration {
20     @AttributeDefinition(
21         name = "default pretty-print",
22         description = "Control the default value of the '" + PrettyPrintParam.uriName + "' query parameter.")
23     boolean pretty$_$print() default false;
24 }