rspec/rules/S3324/java/rule.adoc
2022-02-04 16:28:24 +00:00

28 lines
524 B
Plaintext

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.
== Noncompliant Code Example
[source,java]
----
// TODO
----
== Compliant Solution
[source,java]
----
// TODO
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
endif::env-github,rspecator-view[]