rspec/rules/S3324/java/rule.adoc

26 lines
496 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
In Spring applications, application components that expose interfaces should be package protected at most, not ``++public++``. Such reduced visibility helps ensure that the interface is only accessed through the container and not directly.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
// TODO
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
// TODO
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
endif::env-github,rspecator-view[]