Skip to content

Conversation

@rbygrave
Copy link
Contributor

@rbygrave rbygrave commented Jun 20, 2024

…server code

e.g.

public class Foo {
    public enum NestedEnum {
        A, B, C
    }
}
@Controller
class TestController {
    @Post
    void foo(Foo.NestedEnum value) {
        System.out.println(value);
    }

…server code

e.g.
```
public class Foo {
    public enum NestedEnum {
        A, B, C
    }
}
```

```
@controller
class TestController {
    @post
    void foo(Foo.NestedEnum value) {
        System.out.println(value);
    }
```
@rbygrave rbygrave added this to the 2.6 milestone Jun 20, 2024
@rbygrave rbygrave self-assigned this Jun 20, 2024
@rbygrave rbygrave linked an issue Jun 20, 2024 that may be closed by this pull request
@rbygrave rbygrave requested a review from SentryMan June 20, 2024 10:15
@rbygrave rbygrave merged commit b885da3 into master Jun 20, 2024
@rbygrave rbygrave deleted the feature/453-nested-enum branch June 20, 2024 10:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Nested parent class not imported in generated server code

2 participants