/core/src/main/java/com/github/api/v2/schema/Repository.java

http://github.com/nabeelmukhtar/github-java-sdk · Java · 697 lines · 234 code · 96 blank · 367 comment · 2 complexity · 6c0835c9e6c8b6376da299801f8feeb9 MD5 · raw file

  1. /*
  2. * Copyright 2010 Nabeel Mukhtar
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. package com.github.api.v2.schema;
  18. import java.util.Date;
  19. import java.util.HashMap;
  20. import java.util.Map;
  21. import com.google.gson.annotations.SerializedName;
  22. /**
  23. * The Class Repository.
  24. */
  25. public class Repository extends SchemaEntity {
  26. /**
  27. * The Enum Visibility.
  28. */
  29. public enum Visibility implements ValueEnum {
  30. /** The PUBLIC. */
  31. PUBLIC("public"),
  32. /** The PRIVATE. */
  33. PRIVATE("private");
  34. /** The Constant stringToEnum. */
  35. private static final Map<String, Visibility> stringToEnum = new HashMap<String, Visibility>();
  36. static { // Initialize map from constant name to enum constant
  37. for (Visibility op : values()) {
  38. stringToEnum.put(op.value(), op);
  39. }
  40. }
  41. /** The value. */
  42. private final String value;
  43. /**
  44. * Instantiates a new visibility.
  45. *
  46. * @param value
  47. * the value
  48. */
  49. Visibility(String value) {
  50. this.value = value;
  51. }
  52. /* (non-Javadoc)
  53. * @see com.github.api.v2.schema.ValueEnum#value()
  54. */
  55. @Override
  56. public String value() {
  57. return value;
  58. }
  59. /**
  60. * From value.
  61. *
  62. * @param value
  63. * the value
  64. *
  65. * @return the visibility
  66. */
  67. public static Visibility fromValue(String value) {
  68. return stringToEnum.get(value);
  69. }
  70. }
  71. /** The Constant MASTER. */
  72. public static final String MASTER = "master";
  73. /** The Constant serialVersionUID. */
  74. private static final long serialVersionUID = 9155892708485181542L;
  75. /** The watchers. */
  76. private int watchers;
  77. /** The owner. */
  78. private String owner;
  79. /** The name. */
  80. private String name;
  81. /** The description. */
  82. private String description;
  83. /** The visibility. */
  84. @SerializedName("private")
  85. private boolean visibility;
  86. /** The url. */
  87. private String url;
  88. /** The open issues. */
  89. private int openIssues;
  90. /** The fork. */
  91. private boolean fork;
  92. /** The homepage. */
  93. private String homepage;
  94. /** The forks. */
  95. private int forks;
  96. /** The score. */
  97. private double score;
  98. /** The actions. */
  99. private int actions;
  100. /** The size. */
  101. private long size;
  102. /** The language. */
  103. private Language language;
  104. /** The followers. */
  105. private int followers;
  106. /** The username. */
  107. private String username;
  108. /** The type. */
  109. private String type;
  110. /** The id. */
  111. private String id;
  112. /** The pushed at. */
  113. private Date pushedAt;
  114. /** The created at. */
  115. private Date createdAt;
  116. /** The source. */
  117. private String source;
  118. /** The parent. */
  119. private String parent;
  120. /** The has wiki. */
  121. private boolean hasWiki;
  122. /** The has issues. */
  123. private boolean hasIssues;
  124. /** The has downloads. */
  125. private boolean hasDownloads;
  126. /** The organization. */
  127. private String organization;
  128. /** The permission. */
  129. private Permission permission;
  130. /**
  131. * Gets the watchers.
  132. *
  133. * @return the watchers
  134. */
  135. public int getWatchers() {
  136. return watchers;
  137. }
  138. /**
  139. * Sets the watchers.
  140. *
  141. * @param watchers
  142. * the new watchers
  143. */
  144. public void setWatchers(int watchers) {
  145. this.watchers = watchers;
  146. }
  147. /**
  148. * Gets the owner.
  149. *
  150. * @return the owner
  151. */
  152. public String getOwner() {
  153. return owner;
  154. }
  155. /**
  156. * Sets the owner.
  157. *
  158. * @param owner
  159. * the new owner
  160. */
  161. public void setOwner(String owner) {
  162. this.owner = owner;
  163. }
  164. /**
  165. * Gets the name.
  166. *
  167. * @return the name
  168. */
  169. public String getName() {
  170. return name;
  171. }
  172. /**
  173. * Sets the name.
  174. *
  175. * @param name
  176. * the new name
  177. */
  178. public void setName(String name) {
  179. this.name = name;
  180. }
  181. /**
  182. * Gets the description.
  183. *
  184. * @return the description
  185. */
  186. public String getDescription() {
  187. return description;
  188. }
  189. /**
  190. * Sets the description.
  191. *
  192. * @param description
  193. * the new description
  194. */
  195. public void setDescription(String description) {
  196. this.description = description;
  197. }
  198. /**
  199. * Gets the visibility.
  200. *
  201. * @return the visibility
  202. */
  203. public Visibility getVisibility() {
  204. return visibility ? Visibility.PRIVATE : Visibility.PUBLIC ;
  205. }
  206. /**
  207. * Sets the visibility.
  208. *
  209. * @param visibility
  210. * the new visibility
  211. */
  212. public void setVisibility(Visibility visibility) {
  213. this.visibility = (visibility == Visibility.PRIVATE);
  214. }
  215. /* (non-Javadoc)
  216. * @see com.github.api.v2.schema.SchemaEntity#getUrl()
  217. */
  218. public String getUrl() {
  219. return url;
  220. }
  221. /* (non-Javadoc)
  222. * @see com.github.api.v2.schema.SchemaEntity#setUrl(java.lang.String)
  223. */
  224. public void setUrl(String url) {
  225. this.url = url;
  226. }
  227. /**
  228. * Gets the open issues.
  229. *
  230. * @return the open issues
  231. */
  232. public int getOpenIssues() {
  233. return openIssues;
  234. }
  235. /**
  236. * Sets the open issues.
  237. *
  238. * @param openIssues
  239. * the new open issues
  240. */
  241. public void setOpenIssues(int openIssues) {
  242. this.openIssues = openIssues;
  243. }
  244. /**
  245. * Checks if is fork.
  246. *
  247. * @return true, if is fork
  248. */
  249. public boolean isFork() {
  250. return fork;
  251. }
  252. /**
  253. * Sets the fork.
  254. *
  255. * @param fork
  256. * the new fork
  257. */
  258. public void setFork(boolean fork) {
  259. this.fork = fork;
  260. }
  261. /**
  262. * Gets the homepage.
  263. *
  264. * @return the homepage
  265. */
  266. public String getHomepage() {
  267. return homepage;
  268. }
  269. /**
  270. * Sets the homepage.
  271. *
  272. * @param homepage
  273. * the new homepage
  274. */
  275. public void setHomepage(String homepage) {
  276. this.homepage = homepage;
  277. }
  278. /**
  279. * Gets the forks.
  280. *
  281. * @return the forks
  282. */
  283. public int getForks() {
  284. return forks;
  285. }
  286. /**
  287. * Sets the forks.
  288. *
  289. * @param forks
  290. * the new forks
  291. */
  292. public void setForks(int forks) {
  293. this.forks = forks;
  294. }
  295. /**
  296. * Gets the score.
  297. *
  298. * @return the score
  299. */
  300. public double getScore() {
  301. return score;
  302. }
  303. /**
  304. * Sets the score.
  305. *
  306. * @param score
  307. * the new score
  308. */
  309. public void setScore(double score) {
  310. this.score = score;
  311. }
  312. /**
  313. * Gets the actions.
  314. *
  315. * @return the actions
  316. */
  317. public int getActions() {
  318. return actions;
  319. }
  320. /**
  321. * Sets the actions.
  322. *
  323. * @param actions
  324. * the new actions
  325. */
  326. public void setActions(int actions) {
  327. this.actions = actions;
  328. }
  329. /**
  330. * Gets the size.
  331. *
  332. * @return the size
  333. */
  334. public long getSize() {
  335. return size;
  336. }
  337. /**
  338. * Sets the size.
  339. *
  340. * @param size
  341. * the new size
  342. */
  343. public void setSize(long size) {
  344. this.size = size;
  345. }
  346. /**
  347. * Gets the language.
  348. *
  349. * @return the language
  350. */
  351. public Language getLanguage() {
  352. return language;
  353. }
  354. /**
  355. * Sets the language.
  356. *
  357. * @param language
  358. * the new language
  359. */
  360. public void setLanguage(Language language) {
  361. this.language = language;
  362. }
  363. /**
  364. * Gets the followers.
  365. *
  366. * @return the followers
  367. */
  368. public int getFollowers() {
  369. return followers;
  370. }
  371. /**
  372. * Sets the followers.
  373. *
  374. * @param followers
  375. * the new followers
  376. */
  377. public void setFollowers(int followers) {
  378. this.followers = followers;
  379. }
  380. /**
  381. * Gets the username.
  382. *
  383. * @return the username
  384. */
  385. public String getUsername() {
  386. return username;
  387. }
  388. /**
  389. * Sets the username.
  390. *
  391. * @param username
  392. * the new username
  393. */
  394. public void setUsername(String username) {
  395. this.username = username;
  396. }
  397. /**
  398. * Gets the type.
  399. *
  400. * @return the type
  401. */
  402. public String getType() {
  403. return type;
  404. }
  405. /**
  406. * Sets the type.
  407. *
  408. * @param type
  409. * the new type
  410. */
  411. public void setType(String type) {
  412. this.type = type;
  413. }
  414. /**
  415. * Gets the id.
  416. *
  417. * @return the id
  418. */
  419. public String getId() {
  420. return id;
  421. }
  422. /**
  423. * Sets the id.
  424. *
  425. * @param id
  426. * the new id
  427. */
  428. public void setId(String id) {
  429. this.id = id;
  430. }
  431. /**
  432. * Gets the pushed at.
  433. *
  434. * @return the pushed at
  435. */
  436. public Date getPushedAt() {
  437. return pushedAt;
  438. }
  439. /**
  440. * Sets the pushed at.
  441. *
  442. * @param pushedAt
  443. * the new pushed at
  444. */
  445. public void setPushedAt(Date pushedAt) {
  446. this.pushedAt = pushedAt;
  447. }
  448. /**
  449. * Gets the created at.
  450. *
  451. * @return the created at
  452. */
  453. public Date getCreatedAt() {
  454. return createdAt;
  455. }
  456. /**
  457. * Sets the created.
  458. *
  459. * @param createdAt
  460. * the new created
  461. */
  462. public void setCreated(Date createdAt) {
  463. this.createdAt = createdAt;
  464. }
  465. /**
  466. * Gets the source.
  467. *
  468. * @return the source
  469. */
  470. public String getSource() {
  471. return source;
  472. }
  473. /**
  474. * Sets the source.
  475. *
  476. * @param source
  477. * the new source
  478. */
  479. public void setSource(String source) {
  480. this.source = source;
  481. }
  482. /**
  483. * Gets the parent.
  484. *
  485. * @return the parent
  486. */
  487. public String getParent() {
  488. return parent;
  489. }
  490. /**
  491. * Sets the parent.
  492. *
  493. * @param parent
  494. * the new parent
  495. */
  496. public void setParent(String parent) {
  497. this.parent = parent;
  498. }
  499. /**
  500. * Checks if is checks for wiki.
  501. *
  502. * @return true, if is checks for wiki
  503. */
  504. public boolean isHasWiki() {
  505. return hasWiki;
  506. }
  507. /**
  508. * Sets the checks for wiki.
  509. *
  510. * @param hasWiki
  511. * the new checks for wiki
  512. */
  513. public void setHasWiki(boolean hasWiki) {
  514. this.hasWiki = hasWiki;
  515. }
  516. /**
  517. * Checks if is checks for issues.
  518. *
  519. * @return true, if is checks for issues
  520. */
  521. public boolean isHasIssues() {
  522. return hasIssues;
  523. }
  524. /**
  525. * Sets the checks for issues.
  526. *
  527. * @param hasIssues
  528. * the new checks for issues
  529. */
  530. public void setHasIssues(boolean hasIssues) {
  531. this.hasIssues = hasIssues;
  532. }
  533. /**
  534. * Checks if is checks for downloads.
  535. *
  536. * @return true, if is checks for downloads
  537. */
  538. public boolean isHasDownloads() {
  539. return hasDownloads;
  540. }
  541. /**
  542. * Sets the checks for downloads.
  543. *
  544. * @param hasDownloads
  545. * the new checks for downloads
  546. */
  547. public void setHasDownloads(boolean hasDownloads) {
  548. this.hasDownloads = hasDownloads;
  549. }
  550. /**
  551. * Gets the organization.
  552. *
  553. * @return the organization
  554. */
  555. public String getOrganization() {
  556. return organization;
  557. }
  558. /**
  559. * Sets the organization.
  560. *
  561. * @param organization
  562. * the new organization
  563. */
  564. public void setOrganization(String organization) {
  565. this.organization = organization;
  566. }
  567. /**
  568. * Gets the permission.
  569. *
  570. * @return the permission
  571. */
  572. public Permission getPermission() {
  573. return permission;
  574. }
  575. /**
  576. * Sets the permission.
  577. *
  578. * @param permission
  579. * the new permission
  580. */
  581. public void setPermission(Permission permission) {
  582. this.permission = permission;
  583. }
  584. /* (non-Javadoc)
  585. * @see java.lang.Object#toString()
  586. */
  587. @Override
  588. public String toString() {
  589. return "Repository [actions=" + actions + ", created=" + createdAt
  590. + ", description=" + description + ", followers=" + followers
  591. + ", fork=" + fork + ", forks=" + forks + ", hasDownloads="
  592. + hasDownloads + ", hasIssues=" + hasIssues + ", hasWiki="
  593. + hasWiki + ", homepage=" + homepage + ", id=" + id
  594. + ", language=" + language + ", name=" + name + ", openIssues="
  595. + openIssues + ", owner=" + owner + ", parent=" + parent
  596. + ", pushed=" + pushedAt + ", score=" + score + ", size=" + size
  597. + ", source=" + source + ", type=" + type + ", url=" + url
  598. + ", username=" + username + ", visibiity=" + visibility
  599. + ", watchers=" + watchers + "]";
  600. }
  601. }