Backport further refinements from the nullability efforts
Issue: SPR-15656
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2016 the original author or authors.
|
||||
* Copyright 2002-2017 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -22,19 +22,19 @@ package org.springframework.jmx;
|
||||
*/
|
||||
public interface IJmxTestBean {
|
||||
|
||||
public int add(int x, int y);
|
||||
int add(int x, int y);
|
||||
|
||||
public long myOperation();
|
||||
long myOperation();
|
||||
|
||||
public int getAge();
|
||||
int getAge();
|
||||
|
||||
public void setAge(int age);
|
||||
void setAge(int age);
|
||||
|
||||
public void setName(String name) throws Exception;
|
||||
void setName(String name) throws Exception;
|
||||
|
||||
public String getName();
|
||||
String getName();
|
||||
|
||||
// used to test invalid methods that exist in the proxy interface
|
||||
public void dontExposeMe();
|
||||
void dontExposeMe();
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user