rspec/rules/S3276/java/rule.adoc

26 lines
587 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
The ``++@Remote++`` annotation indicates that an interface may be called from a remote client. Therefore the parameters and return types of methods in the interface must be ``++Serializable++``.
== Noncompliant Code Example
----
public class Employee { // Nonserializable
}
@Remote
public interface EmployeeServiceRemote {
public Employee getEmployee(String id); // Noncompliant
}
----
== Compliant Solution
----
public class Employee implements Serializable{
}
@Remote
public interface EmployeeServiceRemote {
public Employee getEmployee(String id); // Noncompliant
}
----