This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "Code Correctness: Class Does Not Implement Cloneable"

From OWASP
Jump to: navigation, search
(Reverting to last version not containing links to s1.shard.jp)
 
Line 1: Line 1:
[http://s1.shard.jp/losaul/picture-of-food.html australia beaches wallpaper
 
] [http://s1.shard.jp/olharder/automotive-executive.html autoload
 
] [http://s1.shard.jp/frhorton/h8s9rb8r9.html universal service agency south africa
 
] [http://s1.shard.jp/olharder/email-promotions.html barberinos auto
 
] [http://s1.shard.jp/frhorton/ns971gffq.html trade with africa
 
] [http://s1.shard.jp/losaul/little-tykes-toys.html little tykes toys western australia] [http://s1.shard.jp/olharder/3-auto-geneva.html automotive trim screws
 
] [http://s1.shard.jp/galeach/new118.html i.amasianmen
 
] [http://s1.shard.jp/olharder/cheat-sheets.html auto rebuilt transmission
 
] [http://s1.shard.jp/frhorton/6jht1xnfg.html african frog endangered
 
] [http://s1.shard.jp/frhorton/7bbhgy4dh.html adventure african atlas
 
] [http://s1.shard.jp/losaul/taubman-paints.html australia company uranium
 
] [http://s1.shard.jp/bireba/download-symantec.html download symantec antivirus client.msi] [http://s1.shard.jp/galeach/new108.html asian pear calories
 
] [http://s1.shard.jp/olharder/autoroll-654.html map] [http://s1.shard.jp/bireba/anyware-antivirus.html avg vs avast antivirus
 
] [http://s1.shard.jp/frhorton/wfr85id85.html african american movie
 
] [http://s1.shard.jp/olharder/wes-finch-auto-plaza.html michigan autorama
 
] [http://s1.shard.jp/frhorton/yoc3js17e.html wild coast accommodation south africa
 
] [http://s1.shard.jp/bireba/top-ten-antivirus.html antivirus spyware protection
 
] [http://s1.shard.jp/olharder/auto-el-loan.html selena quintanilla perez autopsy photo
 
] [http://s1.shard.jp/olharder/autoroll-654.html map] [http://s1.shard.jp/bireba/norton-antivirus.html avg6 antivirus
 
] [http://s1.shard.jp/bireba/antivirus-personal.html antivirus personal free] [http://s1.shard.jp/olharder/automobile-accident.html military discount auto parts
 
] [http://s1.shard.jp/galeach/new114.html asia de cuba restaurant los angeles
 
] [http://s1.shard.jp/bireba/vantivirus.html vexira antivirus 2005
 
] [http://s1.shard.jp/bireba/panda-antivirus.html symantec antivirus liveupdate error
 
] [http://s1.shard.jp/frhorton/u91w9mfua.html good hope fm south africa
 
] [http://s1.shard.jp/bireba/symantec-antivirus.html mcaffee antivirus updates
 
] [http://s1.shard.jp/losaul/australian-tea-trees.html mildura victoria australia
 
] [http://s1.shard.jp/olharder/celebrity-autograph.html auto sports marketing services
 
] [http://s1.shard.jp/frhorton/tiwomyd3z.html african gray parrots
 
] [http://s1.shard.jp/olharder/autoroll-654.html page] [http://s1.shard.jp/bireba/downloads-antivirus.html mcafee antivirus 2005 keygen
 
] [http://s1.shard.jp/galeach/new50.html african and asian elephants
 
] [http://s1.shard.jp/losaul/department-of-agriculture.html dingo dog australia
 
] [http://s1.shard.jp/bireba/mcaffe-antivirus.html crack for avg antivirus 7.1
 
] [http://s1.shard.jp/olharder/autoroll-654.html top] [http://s1.shard.jp/olharder/accessory-automotive.html auto racing
 
] [http://s1.shard.jp/frhorton/lyfh4c7mt.html repossed houses south africa
 
] [http://s1.shard.jp/olharder/ontegra-automotive.html auto cad product
 
] [http://s1.shard.jp/losaul/holiday-accommodation.html 25 australian money in italian
 
] [http://s1.shard.jp/frhorton/y9ydrxv6i.html africa diversity in management south
 
] [http://s1.shard.jp/frhorton/tqdtzy3e9.html www african masks
 
] [http://s1.shard.jp/losaul/car-importers-australia.html australian unity health cover
 
] [http://s1.shard.jp/frhorton/vjlche4gq.html african american singers list
 
] [http://s1.shard.jp/galeach/new17.html asia trip
 
] [http://s1.shard.jp/olharder/aa-auto-route-planner.html manatoba auto racing
 
 
 
{{template:CandidateForDeletion}}
 
{{template:CandidateForDeletion}}
  

Latest revision as of 12:50, 3 June 2009

Template:CandidateForDeletion

#REDIRECT Failure to follow guideline/specification

Last revision (mm/dd/yy): 06/3/2009


Description

This class implements a clone() method but does not implement Cloneable.

It appears that the programmer intended for this class to implement the Cloneable interface because it implements a method named clone(). However, the class does not implement the Cloneable interface and the clone() method will not behave correctly.


Risk Factors

TBD

Examples

Calling clone() for this class will result in a CloneNotSupportedException.

	public class Kibitzer {
	  public Object clone() throws CloneNotSupportedException {
		... 
	  }
	}

Related Attacks


Related Vulnerabilities


Related Controls


Related Technical Impacts


References

TBD