2025-04-10 21:35:49 +02:00
|
|
|
/*
|
|
|
|
Copyright 2025 "Johan Maasing" <johan@zoom.nu>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
{
|
|
|
|
some: configvalue,
|
|
|
|
someother: value,
|
2025-04-15 16:57:14 +02:00
|
|
|
package: se.rutdev.senash
|
2025-04-09 20:00:23 +02:00
|
|
|
}
|
2025-04-08 19:21:13 +02:00
|
|
|
|
|
|
|
/some/endpoint <- SomeType(foo:String)
|
2025-04-09 20:00:23 +02:00
|
|
|
Embedded(foo:Bar)
|
2025-04-08 20:57:31 +02:00
|
|
|
/some/other/endpoint <- (bar:Seq[Embedded])
|
2025-04-10 21:35:49 +02:00
|
|
|
/yet/other/endpoint2 <- (bar2:Seq[AType]) -> NamedResponse(foo:Bar)
|
2025-04-09 20:00:23 +02:00
|
|
|
AType(data: java.util.List<String>)
|
2025-04-10 21:35:49 +02:00
|
|
|
/yet/other/endpoint3 <- (bar2:Seq[AType]) -> (foo:Bar)
|