Declared exceptions in Java interface from Kotlin











up vote
0
down vote

favorite












I have a set of web services that are intercepted by an Aspect with @AfterThrowing. The implementations of the web services are done in Kotlin, but it is based on generated Java code.



So I have a Java interface, and a Kotlin class implementing the interface. When the code throws I want to generically throw the defined fault in the Java interface instead (SomeFault):



public SomeResponseType methodName() throws SomeFault


If everything was in Java it could be done rather easily like this:



MethodSignature methodSignature = (MethodSignature) joinPoint.getStaticPart().getSignature();
Class<? extends Exception> declaredExceptions = methodSignature.getExceptionTypes();


...and then just execute the constructor of declaredExceptions[0]



But when I do something similar in Kotlin it seems like I can't find the exceptions declared in the Java interface:



val declaredExceptions = methodSignature.exceptionTypes


... gives me an empty list



question: How can I find the Exceptions declared in a java interface when intercepting a Kotlin class implementing that interface?










share|improve this question






















  • kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-throws/…
    – JB Nizet
    Nov 21 at 19:29










  • the interface is in Java, not Kotlin. What I want is to figure out "SomeFault" from my post. The Implementation of the interface and the aspectJ Aspect is in Kotlin.
    – Vegard
    Nov 21 at 19:33








  • 1




    If I understand correctly, what you're examining is the signature of the method of the Kotlin subclass. So if you want it to have a declared thrown exception, use Throws. Otherwise, don't examine that method, but instead the overridden method of the Java interface
    – JB Nizet
    Nov 21 at 19:36










  • you are right, I found a solution now based on your anwser, I just assumed wrong that this works the same way in pure Java and in a Java/Kotlin mixed world.
    – Vegard
    Nov 21 at 20:09















up vote
0
down vote

favorite












I have a set of web services that are intercepted by an Aspect with @AfterThrowing. The implementations of the web services are done in Kotlin, but it is based on generated Java code.



So I have a Java interface, and a Kotlin class implementing the interface. When the code throws I want to generically throw the defined fault in the Java interface instead (SomeFault):



public SomeResponseType methodName() throws SomeFault


If everything was in Java it could be done rather easily like this:



MethodSignature methodSignature = (MethodSignature) joinPoint.getStaticPart().getSignature();
Class<? extends Exception> declaredExceptions = methodSignature.getExceptionTypes();


...and then just execute the constructor of declaredExceptions[0]



But when I do something similar in Kotlin it seems like I can't find the exceptions declared in the Java interface:



val declaredExceptions = methodSignature.exceptionTypes


... gives me an empty list



question: How can I find the Exceptions declared in a java interface when intercepting a Kotlin class implementing that interface?










share|improve this question






















  • kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-throws/…
    – JB Nizet
    Nov 21 at 19:29










  • the interface is in Java, not Kotlin. What I want is to figure out "SomeFault" from my post. The Implementation of the interface and the aspectJ Aspect is in Kotlin.
    – Vegard
    Nov 21 at 19:33








  • 1




    If I understand correctly, what you're examining is the signature of the method of the Kotlin subclass. So if you want it to have a declared thrown exception, use Throws. Otherwise, don't examine that method, but instead the overridden method of the Java interface
    – JB Nizet
    Nov 21 at 19:36










  • you are right, I found a solution now based on your anwser, I just assumed wrong that this works the same way in pure Java and in a Java/Kotlin mixed world.
    – Vegard
    Nov 21 at 20:09













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I have a set of web services that are intercepted by an Aspect with @AfterThrowing. The implementations of the web services are done in Kotlin, but it is based on generated Java code.



So I have a Java interface, and a Kotlin class implementing the interface. When the code throws I want to generically throw the defined fault in the Java interface instead (SomeFault):



public SomeResponseType methodName() throws SomeFault


If everything was in Java it could be done rather easily like this:



MethodSignature methodSignature = (MethodSignature) joinPoint.getStaticPart().getSignature();
Class<? extends Exception> declaredExceptions = methodSignature.getExceptionTypes();


...and then just execute the constructor of declaredExceptions[0]



But when I do something similar in Kotlin it seems like I can't find the exceptions declared in the Java interface:



val declaredExceptions = methodSignature.exceptionTypes


... gives me an empty list



question: How can I find the Exceptions declared in a java interface when intercepting a Kotlin class implementing that interface?










share|improve this question













I have a set of web services that are intercepted by an Aspect with @AfterThrowing. The implementations of the web services are done in Kotlin, but it is based on generated Java code.



So I have a Java interface, and a Kotlin class implementing the interface. When the code throws I want to generically throw the defined fault in the Java interface instead (SomeFault):



public SomeResponseType methodName() throws SomeFault


If everything was in Java it could be done rather easily like this:



MethodSignature methodSignature = (MethodSignature) joinPoint.getStaticPart().getSignature();
Class<? extends Exception> declaredExceptions = methodSignature.getExceptionTypes();


...and then just execute the constructor of declaredExceptions[0]



But when I do something similar in Kotlin it seems like I can't find the exceptions declared in the Java interface:



val declaredExceptions = methodSignature.exceptionTypes


... gives me an empty list



question: How can I find the Exceptions declared in a java interface when intercepting a Kotlin class implementing that interface?







java kotlin






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 at 19:26









Vegard

93721226




93721226












  • kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-throws/…
    – JB Nizet
    Nov 21 at 19:29










  • the interface is in Java, not Kotlin. What I want is to figure out "SomeFault" from my post. The Implementation of the interface and the aspectJ Aspect is in Kotlin.
    – Vegard
    Nov 21 at 19:33








  • 1




    If I understand correctly, what you're examining is the signature of the method of the Kotlin subclass. So if you want it to have a declared thrown exception, use Throws. Otherwise, don't examine that method, but instead the overridden method of the Java interface
    – JB Nizet
    Nov 21 at 19:36










  • you are right, I found a solution now based on your anwser, I just assumed wrong that this works the same way in pure Java and in a Java/Kotlin mixed world.
    – Vegard
    Nov 21 at 20:09


















  • kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-throws/…
    – JB Nizet
    Nov 21 at 19:29










  • the interface is in Java, not Kotlin. What I want is to figure out "SomeFault" from my post. The Implementation of the interface and the aspectJ Aspect is in Kotlin.
    – Vegard
    Nov 21 at 19:33








  • 1




    If I understand correctly, what you're examining is the signature of the method of the Kotlin subclass. So if you want it to have a declared thrown exception, use Throws. Otherwise, don't examine that method, but instead the overridden method of the Java interface
    – JB Nizet
    Nov 21 at 19:36










  • you are right, I found a solution now based on your anwser, I just assumed wrong that this works the same way in pure Java and in a Java/Kotlin mixed world.
    – Vegard
    Nov 21 at 20:09
















kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-throws/…
– JB Nizet
Nov 21 at 19:29




kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-throws/…
– JB Nizet
Nov 21 at 19:29












the interface is in Java, not Kotlin. What I want is to figure out "SomeFault" from my post. The Implementation of the interface and the aspectJ Aspect is in Kotlin.
– Vegard
Nov 21 at 19:33






the interface is in Java, not Kotlin. What I want is to figure out "SomeFault" from my post. The Implementation of the interface and the aspectJ Aspect is in Kotlin.
– Vegard
Nov 21 at 19:33






1




1




If I understand correctly, what you're examining is the signature of the method of the Kotlin subclass. So if you want it to have a declared thrown exception, use Throws. Otherwise, don't examine that method, but instead the overridden method of the Java interface
– JB Nizet
Nov 21 at 19:36




If I understand correctly, what you're examining is the signature of the method of the Kotlin subclass. So if you want it to have a declared thrown exception, use Throws. Otherwise, don't examine that method, but instead the overridden method of the Java interface
– JB Nizet
Nov 21 at 19:36












you are right, I found a solution now based on your anwser, I just assumed wrong that this works the same way in pure Java and in a Java/Kotlin mixed world.
– Vegard
Nov 21 at 20:09




you are right, I found a solution now based on your anwser, I just assumed wrong that this works the same way in pure Java and in a Java/Kotlin mixed world.
– Vegard
Nov 21 at 20:09












1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










Found a solution based on JBs comment:



Class.forName(methodSignature.declaringType.genericInterfaces[0].typeName).declaredMethods
.filter { method -> method.name == methodSignature.name }
.forEach { method -> method.exceptionTypes[0] <executed>}





share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419253%2fdeclared-exceptions-in-java-interface-from-kotlin%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote



    accepted










    Found a solution based on JBs comment:



    Class.forName(methodSignature.declaringType.genericInterfaces[0].typeName).declaredMethods
    .filter { method -> method.name == methodSignature.name }
    .forEach { method -> method.exceptionTypes[0] <executed>}





    share|improve this answer

























      up vote
      0
      down vote



      accepted










      Found a solution based on JBs comment:



      Class.forName(methodSignature.declaringType.genericInterfaces[0].typeName).declaredMethods
      .filter { method -> method.name == methodSignature.name }
      .forEach { method -> method.exceptionTypes[0] <executed>}





      share|improve this answer























        up vote
        0
        down vote



        accepted







        up vote
        0
        down vote



        accepted






        Found a solution based on JBs comment:



        Class.forName(methodSignature.declaringType.genericInterfaces[0].typeName).declaredMethods
        .filter { method -> method.name == methodSignature.name }
        .forEach { method -> method.exceptionTypes[0] <executed>}





        share|improve this answer












        Found a solution based on JBs comment:



        Class.forName(methodSignature.declaringType.genericInterfaces[0].typeName).declaredMethods
        .filter { method -> method.name == methodSignature.name }
        .forEach { method -> method.exceptionTypes[0] <executed>}






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 21 at 20:11









        Vegard

        93721226




        93721226






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419253%2fdeclared-exceptions-in-java-interface-from-kotlin%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Contact image not getting when fetch all contact list from iPhone by CNContact

            count number of partitions of a set with n elements into k subsets

            A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks