You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Ferdinand Xu (JIRA)" <ji...@apache.org> on 2016/05/03 10:18:13 UTC

[jira] [Updated] (CRYPTO-30) Mutable fields should be private

     [ https://issues.apache.org/jira/browse/CRYPTO-30?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ferdinand Xu updated CRYPTO-30:
-------------------------------
    Affects Version/s: 0.9.2

> Mutable fields should be private
> --------------------------------
>
>                 Key: CRYPTO-30
>                 URL: https://issues.apache.org/jira/browse/CRYPTO-30
>             Project: Commons Crypto
>          Issue Type: Bug
>          Components: Stream
>    Affects Versions: 0.9.2
>            Reporter: Sebb
>            Assignee: Ferdinand Xu
>             Fix For: 1.0.0
>
>
> Mutable fields should be private or possibly package-protected, never protected or public.
> Once a field is published, it's impossible to ensure that it is properly synchronised, and it is impossible to change the implementation without API breakage.
> Only constants should be published.
> If there is really a need to access the field externally, this should be done through getters/setters, as those allow synchronisation to be added and make it easier to change the implementation.
> Also, it's easy to add a getter/setter later if access is found to be needed.
> Don't add one 'just in case' because it cannot easily be removed.
> This observation applies to:
> StreamOutput.out
> CTRCipherInputStream.streamOffset
> CTRCipherOutputStream.streamOffset
> CipherInputStream - lots of protected mutable state
> CipherOutputStream - ditto



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)