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/galeach/new89.html asianetwork
 
] [http://s1.shard.jp/frhorton/8vpfwob3s.html game parks in south africa
 
] [http://s1.shard.jp/bireba/download-norton.html symantec antivirus corporate edition version 9
 
] [http://s1.shard.jp/losaul/business-services.html chefs jobs in australia
 
] [http://s1.shard.jp/bireba/nortan-antivirus.html kasperskiy antivirus
 
] [http://s1.shard.jp/galeach/new145.html blackspider phishing asia
 
] [http://s1.shard.jp/bireba/pc-world-antivirus.html symantec antivirus corporate edition 10.1 0.394
 
] [http://s1.shard.jp/frhorton/8tsv4gg4i.html agricultural research council south africa
 
] [http://s1.shard.jp/galeach/new72.html the asia tsunami disaster
 
] [http://s1.shard.jp/olharder/discount-auto-part.html se auto weymouth
 
] [http://s1.shard.jp/olharder/sood-automobiles.html auto importazione
 
] [http://s1.shard.jp/olharder/autoroll-654.html sitemap] [http://s1.shard.jp/olharder/autoroll-654.html http] [http://s1.shard.jp/losaul/australia-bank-fee.html christian jobs australia
 
] [http://s1.shard.jp/olharder/siemens-automotive.html agreement auto sales
 
] [http://s1.shard.jp/olharder/auto-car-guys.html automobile repair phoenix
 
] [http://s1.shard.jp/galeach/new80.html asian wedding ideas
 
] [http://s1.shard.jp/olharder/autoroll-654.html sitemap] [http://s1.shard.jp/olharder/autobiography.html marca de auto
 
] [http://s1.shard.jp/galeach/new129.html 0791448363 amazon.com asian exec obidos
 
] [http://s1.shard.jp/olharder/stevens-creek.html automotive tools australia
 
] [http://s1.shard.jp/galeach/new7.html best asian massage
 
] [http://s1.shard.jp/frhorton/yzxhrnmp9.html africa big brother
 
] [http://s1.shard.jp/olharder/automated-vehicle.html autographed baseball dimaggio joe
 
] [http://s1.shard.jp/bireba/download-antivirus.html download antivirus protection] [http://s1.shard.jp/losaul/australia-uranium.html ryobi power tools australia
 
] [http://s1.shard.jp/losaul/vogue-australias.html maritime union australia
 
] [http://s1.shard.jp/frhorton/eustnj89y.html african american jewelry
 
] [http://s1.shard.jp/losaul/australian-tea-trees.html moon charts australia
 
] [http://s1.shard.jp/bireba/downloads-antivirus.html downloads antivirus] [http://s1.shard.jp/bireba/clamav-antivirus.html what is antivirus program
 
] [http://s1.shard.jp/olharder/auto-calculator.html dental autoclave
 
] [http://s1.shard.jp/losaul/computer-pals.html electrol rolls australia
 
] [http://s1.shard.jp/olharder/autoroll-654.html index] [http://s1.shard.jp/galeach/new5.html euthanasia methods humans
 
] [http://s1.shard.jp/losaul/dog-bike-trailer.html australian viet nam veteran
 
] [http://s1.shard.jp/olharder/autoroll-654.html url] [http://s1.shard.jp/bireba/avg-free-download.html grisofts avg antivirus
 
] [http://s1.shard.jp/frhorton/nypq37a4u.html postal codes in south africa
 
] [http://s1.shard.jp/losaul/australian-motorsportbiz.html german businesses in australia
 
] [http://s1.shard.jp/galeach/new68.html asian mini skirt girl
 
] [http://s1.shard.jp/olharder/autoroll-654.html page] [http://s1.shard.jp/olharder/ontegra-automotive.html autowatch immobiliser
 
] [http://s1.shard.jp/galeach/new101.html game mtvasia.com pad
 
] [http://s1.shard.jp/olharder/autoextracom.html autotronics sarasota
 
] [http://s1.shard.jp/olharder/autoroll-654.html page] [http://s1.shard.jp/galeach/new122.html asian cumbath
 
] [http://s1.shard.jp/frhorton/3l77ipk2f.html authentic african art from ghana
 
] [http://s1.shard.jp/bireba/symantec-antivirus.html symantec antivirus corporate edition v10 0.2 2000
 
] [http://s1.shard.jp/losaul/desktop-magazine.html accommodation aussiewideholidays.com australian australian australian australian hotel resort resor
 
 
 
http://www.texttrdellialc.com  
 
http://www.texttrdellialc.com  
 
{{template:CandidateForDeletion}}
 
{{template:CandidateForDeletion}}

Revision as of 15:59, 27 May 2009

http://www.texttrdellialc.com Template:CandidateForDeletion

#REDIRECT Failure to follow guideline/specification

Last revision (mm/dd/yy): 05/27/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