Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
MkHook |
|
| 1.25;1.25 | ||||
MkHook$AjcClosure1 |
|
| 1.25;1.25 | ||||
MkHook$AjcClosure3 |
|
| 1.25;1.25 | ||||
MkHook$AjcClosure5 |
|
| 1.25;1.25 |
1 | 0 | /** |
2 | * Copyright (c) 2013-2017, jcabi.com | |
3 | * All rights reserved. | |
4 | * | |
5 | * Redistribution and use in source and binary forms, with or without | |
6 | * modification, are permitted provided that the following conditions | |
7 | * are met: 1) Redistributions of source code must retain the above | |
8 | * copyright notice, this list of conditions and the following | |
9 | * disclaimer. 2) Redistributions in binary form must reproduce the above | |
10 | * copyright notice, this list of conditions and the following | |
11 | * disclaimer in the documentation and/or other materials provided | |
12 | * with the distribution. 3) Neither the name of the jcabi.com nor | |
13 | * the names of its contributors may be used to endorse or promote | |
14 | * products derived from this software without specific prior written | |
15 | * permission. | |
16 | * | |
17 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
18 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT | |
19 | * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | |
20 | * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | |
21 | * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, | |
22 | * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | |
24 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
25 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | |
26 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | |
28 | * OF THE POSSIBILITY OF SUCH DAMAGE. | |
29 | */ | |
30 | package com.jcabi.github.mock; | |
31 | ||
32 | import com.jcabi.aspects.Immutable; | |
33 | import com.jcabi.aspects.Loggable; | |
34 | import com.jcabi.github.Coordinates; | |
35 | import com.jcabi.github.Hook; | |
36 | import com.jcabi.github.Repo; | |
37 | import java.io.IOException; | |
38 | import javax.json.JsonObject; | |
39 | import lombok.EqualsAndHashCode; | |
40 | import lombok.ToString; | |
41 | ||
42 | /** | |
43 | * Mock Github hook. | |
44 | * | |
45 | * @author Paul Polishchuk (ppol@ua.fm) | |
46 | * @version $Id: 8cc3959ed3f6612a257013fe95576f4afb58e408 $ | |
47 | * @since 0.8 | |
48 | */ | |
49 | @Immutable | |
50 | @Loggable(Loggable.DEBUG) | |
51 | 0 | @ToString |
52 | 0 | @EqualsAndHashCode(of = { "storage", "self", "coords", "num" }) |
53 | final class MkHook implements Hook { | |
54 | /** | |
55 | * Storage. | |
56 | */ | |
57 | private final transient MkStorage storage; | |
58 | ||
59 | /** | |
60 | * Login of the user logged in. | |
61 | */ | |
62 | private final transient String self; | |
63 | ||
64 | /** | |
65 | * Repo name. | |
66 | */ | |
67 | private final transient Coordinates coords; | |
68 | ||
69 | /** | |
70 | * Issue number. | |
71 | */ | |
72 | private final transient int num; | |
73 | ||
74 | /** | |
75 | * Public ctor. | |
76 | * @param stg Storage | |
77 | * @param login User to login | |
78 | * @param rep Repo | |
79 | * @param number Hook number | |
80 | * @checkstyle ParameterNumber (5 lines) | |
81 | */ | |
82 | MkHook( | |
83 | final MkStorage stg, | |
84 | final String login, | |
85 | final Coordinates rep, | |
86 | 10 | final int number) { |
87 | 10 | this.storage = stg; |
88 | 9 | this.self = login; |
89 | 10 | this.coords = rep; |
90 | 10 | this.num = number; |
91 | 10 | } |
92 | @Override | |
93 | public Repo repo() { | |
94 | 0 | return new MkRepo(this.storage, this.self, this.coords); |
95 | } | |
96 | @Override | |
97 | public int number() { | |
98 | 8 | return this.num; |
99 | } | |
100 | @Override | |
101 | public JsonObject json() throws IOException { | |
102 | 0 | throw new UnsupportedOperationException("#json()"); |
103 | } | |
104 | } |