/vt-password/tags/vt-password-2.0.1/src/main/java/edu/vt/middleware/password/Password.java

http://vt-middleware.googlecode.com/ · Java · 485 lines · 203 code · 74 blank · 208 comment · 36 complexity · f8b2accda22f758bdd234be73e7a0d4d MD5 · raw file

  1. /*
  2. $Id: Password.java 210 2009-05-13 14:18:55Z marvin.addison $
  3. Copyright (C) 2003-2008 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 210 $
  9. Updated: $Date: 2009-05-13 16:18:55 +0200 (Wed, 13 May 2009) $
  10. */
  11. package edu.vt.middleware.password;
  12. /**
  13. * <code>Password</code> contains functions for determining what type and what
  14. * quantity of characters a password contains.
  15. *
  16. * @author Middleware Services
  17. * @version $Revision: 210 $ $Date: 2009-05-13 16:18:55 +0200 (Wed, 13 May 2009) $
  18. */
  19. public class Password
  20. {
  21. /** Stores the password. */
  22. private String password;
  23. /** Digits in the password [0-9]. */
  24. private StringBuilder digits;
  25. /** Non-Digits in the password ![0-9]. */
  26. private StringBuilder nonDigits;
  27. /** Alphabetical characters in the password [a-zA-Z]. */
  28. private StringBuilder alphabetical;
  29. /** Non-Alphabetical characters in the password ![a-zA-Z]. */
  30. private StringBuilder nonAlphabetical;
  31. /** Alphanumeric characters in the password [a-zA-Z0-9]. */
  32. private StringBuilder alphanumeric;
  33. /** Non-Alphanumeric characters in the password ![a-zA-Z0-9]. */
  34. private StringBuilder nonAlphanumeric;
  35. /** Uppercase characters in the password [A-Z]. */
  36. private StringBuilder uppercase;
  37. /** Lowercase characters in the password [a-z]. */
  38. private StringBuilder lowercase;
  39. /** Whitespace characters in the password [\s]. */
  40. private StringBuilder whitespace;
  41. /**
  42. * This will create a new <code>Password</code> with the supplied password
  43. * text.
  44. *
  45. * @param text <code>String</code> password
  46. */
  47. public Password(final String text)
  48. {
  49. this.password = text;
  50. this.digits = new StringBuilder(this.password.length());
  51. this.nonDigits = new StringBuilder(this.password.length());
  52. this.alphabetical = new StringBuilder(this.password.length());
  53. this.nonAlphabetical = new StringBuilder(this.password.length());
  54. this.alphanumeric = new StringBuilder(this.password.length());
  55. this.nonAlphanumeric = new StringBuilder(this.password.length());
  56. this.uppercase = new StringBuilder(this.password.length());
  57. this.lowercase = new StringBuilder(this.password.length());
  58. this.whitespace = new StringBuilder(this.password.length());
  59. for (int i = 0; i < this.password.length(); i++) {
  60. final char c = this.password.charAt(i);
  61. if (Character.isDigit(c)) {
  62. this.digits.append(c);
  63. this.alphanumeric.append(c);
  64. this.nonAlphabetical.append(c);
  65. } else if (Character.isLetter(c)) {
  66. this.nonDigits.append(c);
  67. this.alphanumeric.append(c);
  68. this.alphabetical.append(c);
  69. if (Character.isUpperCase(c)) {
  70. this.uppercase.append(c);
  71. } else if (Character.isLowerCase(c)) {
  72. this.lowercase.append(c);
  73. }
  74. } else {
  75. if (Character.isWhitespace(c)) {
  76. this.whitespace.append(c);
  77. }
  78. this.nonDigits.append(c);
  79. this.nonAlphanumeric.append(c);
  80. this.nonAlphabetical.append(c);
  81. }
  82. }
  83. }
  84. /**
  85. * This returns the text of this <code>Password</code>.
  86. *
  87. * @return <code>String</code> - password
  88. */
  89. public String getText()
  90. {
  91. return this.password;
  92. }
  93. /**
  94. * This returns the length of this <code>Password</code>.
  95. *
  96. * @return <code>int</code> - password length
  97. */
  98. public int length()
  99. {
  100. return this.password.length();
  101. }
  102. /**
  103. * This returns whether or not this <code>Password</code> contains digits.
  104. *
  105. * @return <code>boolean</code> - whether or not the password contains digits
  106. */
  107. public boolean containsDigits()
  108. {
  109. return this.digits.length() > 0;
  110. }
  111. /**
  112. * This returns the number of digits in this <code>Password</code>.
  113. *
  114. * @return <code>int</code> - number of digits in the password
  115. */
  116. public int numberOfDigits()
  117. {
  118. return this.digits.length();
  119. }
  120. /**
  121. * This returns the digits in this <code>Password</code>.
  122. *
  123. * @return <code>char[]</code> - digits in this password
  124. */
  125. public char[] digits()
  126. {
  127. char[] array = null;
  128. if (this.digits != null && this.digits.length() > 0) {
  129. array = this.digits.toString().toCharArray();
  130. }
  131. return array;
  132. }
  133. /**
  134. * This returns whether or not this <code>Password</code> contains non-digits.
  135. *
  136. * @return <code>boolean</code> - whether or not the password contains
  137. * non-digits
  138. */
  139. public boolean containsNonDigits()
  140. {
  141. return this.nonDigits.length() > 0;
  142. }
  143. /**
  144. * This returns the number of non-digits in this <code>Password</code>.
  145. *
  146. * @return <code>int</code> - number of non-digits in this password
  147. */
  148. public int numberOfNonDigits()
  149. {
  150. return this.nonDigits.length();
  151. }
  152. /**
  153. * This returns the non-digits in this <code>Password</code>.
  154. *
  155. * @return <code>char[]</code> - non-digits in this password
  156. */
  157. public char[] nonDigits()
  158. {
  159. char[] array = null;
  160. if (this.nonDigits != null && this.nonDigits.length() > 0) {
  161. array = this.nonDigits.toString().toCharArray();
  162. }
  163. return array;
  164. }
  165. /**
  166. * This returns whether or not this <code>Password</code> contains
  167. * alphabetical characters.
  168. *
  169. * @return <code>boolean</code> - whether or not the password contains
  170. * alphabetical characters
  171. */
  172. public boolean containsAlphabetical()
  173. {
  174. return this.alphabetical.length() > 0;
  175. }
  176. /**
  177. * This returns the number of alphabetical characters in this <code>
  178. * Password</code>.
  179. *
  180. * @return <code>int</code> - number of alphabetical characters in this
  181. * password
  182. */
  183. public int numberOfAlphabetical()
  184. {
  185. return this.alphabetical.length();
  186. }
  187. /**
  188. * This returns the alphabetical characters in this <code>Password</code>.
  189. *
  190. * @return <code>char[]</code> - alphabetical characters in this password
  191. */
  192. public char[] alphabetical()
  193. {
  194. char[] array = null;
  195. if (this.alphabetical != null && this.alphabetical.length() > 0) {
  196. array = this.alphabetical.toString().toCharArray();
  197. }
  198. return array;
  199. }
  200. /**
  201. * This returns whether or not this <code>Password</code> contains
  202. * non-alphabetical characters.
  203. *
  204. * @return <code>boolean</code> - whether or not the password contains
  205. * non-alphabetical characters
  206. */
  207. public boolean containsNonAlphabetical()
  208. {
  209. return this.nonAlphabetical.length() > 0;
  210. }
  211. /**
  212. * This returns the number of non-alphabetical characters in this <code>
  213. * Password</code>.
  214. *
  215. * @return <code>int</code> - number of non-alphabetical characters in this
  216. * password
  217. */
  218. public int numberOfNonAlphabetical()
  219. {
  220. return this.nonAlphabetical.length();
  221. }
  222. /**
  223. * This returns the non-alphabetical characters in this <code>Password</code>.
  224. *
  225. * @return <code>char[]</code> - non-alphabetical characters in this password
  226. */
  227. public char[] nonAlphabetical()
  228. {
  229. char[] array = null;
  230. if (this.nonAlphabetical != null && this.nonAlphabetical.length() > 0) {
  231. array = this.nonAlphabetical.toString().toCharArray();
  232. }
  233. return array;
  234. }
  235. /**
  236. * This returns whether or not this <code>Password</code> contains
  237. * alphanumeric characters.
  238. *
  239. * @return <code>boolean</code> - whether or not the password contains
  240. * alphanumeric characters
  241. */
  242. public boolean containsAlphanumeric()
  243. {
  244. return this.alphanumeric.length() > 0;
  245. }
  246. /**
  247. * This returns the number of alphanumeric characters in this <code>
  248. * Password</code>.
  249. *
  250. * @return <code>int</code> - number of alphanumeric characters in this
  251. * password
  252. */
  253. public int numberOfAlphanumeric()
  254. {
  255. return this.alphanumeric.length();
  256. }
  257. /**
  258. * This returns the alphanumeric characters in this <code>Password</code>.
  259. *
  260. * @return <code>char[]</code> - alphanumeric characters in this password
  261. */
  262. public char[] alphanumeric()
  263. {
  264. char[] array = null;
  265. if (this.alphanumeric != null && this.alphanumeric.length() > 0) {
  266. array = this.alphanumeric.toString().toCharArray();
  267. }
  268. return array;
  269. }
  270. /**
  271. * This returns whether or not this <code>Password</code> contains
  272. * non-alphanumeric characters.
  273. *
  274. * @return <code>boolean</code> - whether or not the password contains
  275. * non-alphanumeric characters
  276. */
  277. public boolean containsNonAlphanumeric()
  278. {
  279. return this.nonAlphanumeric.length() > 0;
  280. }
  281. /**
  282. * This returns the number of non-alphanumeric characters in this <code>
  283. * Password</code>.
  284. *
  285. * @return <code>int</code> - number of non-alphanumeric characters in this
  286. * password
  287. */
  288. public int numberOfNonAlphanumeric()
  289. {
  290. return this.nonAlphanumeric.length();
  291. }
  292. /**
  293. * This returns the non-alphanumeric characters in this <code>Password</code>.
  294. *
  295. * @return <code>char[]</code> - non-alphanumeric characters in this password
  296. */
  297. public char[] nonAlphanumeric()
  298. {
  299. char[] array = null;
  300. if (this.nonAlphanumeric != null && this.nonAlphanumeric.length() > 0) {
  301. array = this.nonAlphanumeric.toString().toCharArray();
  302. }
  303. return array;
  304. }
  305. /**
  306. * This returns whether or not this <code>Password</code> contains uppercase
  307. * characters.
  308. *
  309. * @return <code>boolean</code> - whether or not the password contains
  310. * uppercase characters
  311. */
  312. public boolean containsUppercase()
  313. {
  314. return this.uppercase.length() > 0;
  315. }
  316. /**
  317. * This returns the number of uppercase characters in this <code>
  318. * Password</code>.
  319. *
  320. * @return <code>int</code> - number of uppercase characters in this password
  321. */
  322. public int numberOfUppercase()
  323. {
  324. return this.uppercase.length();
  325. }
  326. /**
  327. * This returns the uppercase characters in this <code>Password</code>.
  328. *
  329. * @return <code>char[]</code> - uppercase characters in this password
  330. */
  331. public char[] uppercase()
  332. {
  333. char[] array = null;
  334. if (this.uppercase != null && this.uppercase.length() > 0) {
  335. array = this.uppercase.toString().toCharArray();
  336. }
  337. return array;
  338. }
  339. /**
  340. * This returns whether or not this <code>Password</code> contains lowercase
  341. * characters.
  342. *
  343. * @return <code>boolean</code> - whether or not the password contains
  344. * uppercase characters
  345. */
  346. public boolean containsLowercase()
  347. {
  348. return this.lowercase.length() > 0;
  349. }
  350. /**
  351. * This returns the number of lowercase characters in this <code>
  352. * Password</code>.
  353. *
  354. * @return <code>int</code> - number of lowercase characters in this password
  355. */
  356. public int numberOfLowercase()
  357. {
  358. return this.lowercase.length();
  359. }
  360. /**
  361. * This returns the lowercase characters in this <code>Password</code>.
  362. *
  363. * @return <code>char[]</code> - lowercase characters in this password
  364. */
  365. public char[] lowercase()
  366. {
  367. char[] array = null;
  368. if (this.lowercase != null && this.lowercase.length() > 0) {
  369. array = this.lowercase.toString().toCharArray();
  370. }
  371. return array;
  372. }
  373. /**
  374. * This returns whether or not this <code>Password</code> contains whitespace
  375. * characters.
  376. *
  377. * @return <code>boolean</code> - whether or not the password contains
  378. * whitespace characters
  379. */
  380. public boolean containsWhitespace()
  381. {
  382. return this.whitespace.length() > 0;
  383. }
  384. /**
  385. * This returns the number of whitespace characters in this <code>
  386. * Password</code>.
  387. *
  388. * @return <code>int</code> - number of whitespace characters in this
  389. * password
  390. */
  391. public int numberOfWhitespace()
  392. {
  393. return this.whitespace.length();
  394. }
  395. /**
  396. * This returns the whitespace characters in this <code>Password</code>.
  397. *
  398. * @return <code>char[]</code> - whitespace characters in this password
  399. */
  400. public char[] whitespace()
  401. {
  402. char[] array = null;
  403. if (this.whitespace != null && this.whitespace.length() > 0) {
  404. array = this.whitespace.toString().toCharArray();
  405. }
  406. return array;
  407. }
  408. }