Skip to content

Commit 71b23ce

Browse files
committed
update gen
1 parent 76b3982 commit 71b23ce

File tree

3 files changed

+369
-0
lines changed

3 files changed

+369
-0
lines changed

src/main/java/org/fusioproject/sdk/BackendTag.java

Lines changed: 234 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,239 @@ public BackendTag(HttpClient httpClient, ObjectMapper objectMapper, Parser parse
3030
super(httpClient, objectMapper, parser);
3131
}
3232

33+
public BackendUserTag user()
34+
{
35+
return new BackendUserTag(
36+
this.httpClient,
37+
this.objectMapper,
38+
this.parser
39+
);
40+
}
41+
42+
public BackendTrashTag trash()
43+
{
44+
return new BackendTrashTag(
45+
this.httpClient,
46+
this.objectMapper,
47+
this.parser
48+
);
49+
}
50+
51+
public BackendTransactionTag transaction()
52+
{
53+
return new BackendTransactionTag(
54+
this.httpClient,
55+
this.objectMapper,
56+
this.parser
57+
);
58+
}
59+
60+
public BackendStatisticTag statistic()
61+
{
62+
return new BackendStatisticTag(
63+
this.httpClient,
64+
this.objectMapper,
65+
this.parser
66+
);
67+
}
68+
69+
public BackendSdkTag sdk()
70+
{
71+
return new BackendSdkTag(
72+
this.httpClient,
73+
this.objectMapper,
74+
this.parser
75+
);
76+
}
77+
78+
public BackendScopeTag scope()
79+
{
80+
return new BackendScopeTag(
81+
this.httpClient,
82+
this.objectMapper,
83+
this.parser
84+
);
85+
}
86+
87+
public BackendSchemaTag schema()
88+
{
89+
return new BackendSchemaTag(
90+
this.httpClient,
91+
this.objectMapper,
92+
this.parser
93+
);
94+
}
95+
96+
public BackendOperationTag operation()
97+
{
98+
return new BackendOperationTag(
99+
this.httpClient,
100+
this.objectMapper,
101+
this.parser
102+
);
103+
}
104+
105+
public BackendRoleTag role()
106+
{
107+
return new BackendRoleTag(
108+
this.httpClient,
109+
this.objectMapper,
110+
this.parser
111+
);
112+
}
113+
114+
public BackendRateTag rate()
115+
{
116+
return new BackendRateTag(
117+
this.httpClient,
118+
this.objectMapper,
119+
this.parser
120+
);
121+
}
122+
123+
public BackendPlanTag plan()
124+
{
125+
return new BackendPlanTag(
126+
this.httpClient,
127+
this.objectMapper,
128+
this.parser
129+
);
130+
}
131+
132+
public BackendPageTag page()
133+
{
134+
return new BackendPageTag(
135+
this.httpClient,
136+
this.objectMapper,
137+
this.parser
138+
);
139+
}
140+
141+
public BackendMarketplaceTag marketplace()
142+
{
143+
return new BackendMarketplaceTag(
144+
this.httpClient,
145+
this.objectMapper,
146+
this.parser
147+
);
148+
}
149+
150+
public BackendLogTag log()
151+
{
152+
return new BackendLogTag(
153+
this.httpClient,
154+
this.objectMapper,
155+
this.parser
156+
);
157+
}
158+
159+
public BackendIdentityTag identity()
160+
{
161+
return new BackendIdentityTag(
162+
this.httpClient,
163+
this.objectMapper,
164+
this.parser
165+
);
166+
}
167+
168+
public BackendGeneratorTag generator()
169+
{
170+
return new BackendGeneratorTag(
171+
this.httpClient,
172+
this.objectMapper,
173+
this.parser
174+
);
175+
}
176+
177+
public BackendEventTag event()
178+
{
179+
return new BackendEventTag(
180+
this.httpClient,
181+
this.objectMapper,
182+
this.parser
183+
);
184+
}
185+
186+
public BackendDashboardTag dashboard()
187+
{
188+
return new BackendDashboardTag(
189+
this.httpClient,
190+
this.objectMapper,
191+
this.parser
192+
);
193+
}
194+
195+
public BackendCronjobTag cronjob()
196+
{
197+
return new BackendCronjobTag(
198+
this.httpClient,
199+
this.objectMapper,
200+
this.parser
201+
);
202+
}
203+
204+
public BackendConnectionTag connection()
205+
{
206+
return new BackendConnectionTag(
207+
this.httpClient,
208+
this.objectMapper,
209+
this.parser
210+
);
211+
}
212+
213+
public BackendConfigTag config()
214+
{
215+
return new BackendConfigTag(
216+
this.httpClient,
217+
this.objectMapper,
218+
this.parser
219+
);
220+
}
221+
222+
public BackendCategoryTag category()
223+
{
224+
return new BackendCategoryTag(
225+
this.httpClient,
226+
this.objectMapper,
227+
this.parser
228+
);
229+
}
230+
231+
public BackendAuditTag audit()
232+
{
233+
return new BackendAuditTag(
234+
this.httpClient,
235+
this.objectMapper,
236+
this.parser
237+
);
238+
}
239+
240+
public BackendAppTag app()
241+
{
242+
return new BackendAppTag(
243+
this.httpClient,
244+
this.objectMapper,
245+
this.parser
246+
);
247+
}
248+
249+
public BackendActionTag action()
250+
{
251+
return new BackendActionTag(
252+
this.httpClient,
253+
this.objectMapper,
254+
this.parser
255+
);
256+
}
257+
258+
public BackendAccountTag account()
259+
{
260+
return new BackendAccountTag(
261+
this.httpClient,
262+
this.objectMapper,
263+
this.parser
264+
);
265+
}
266+
33267

34268
}

src/main/java/org/fusioproject/sdk/ConsumerTag.java

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,113 @@ public ConsumerTag(HttpClient httpClient, ObjectMapper objectMapper, Parser pars
3030
super(httpClient, objectMapper, parser);
3131
}
3232

33+
public ConsumerIdentityTag identity()
34+
{
35+
return new ConsumerIdentityTag(
36+
this.httpClient,
37+
this.objectMapper,
38+
this.parser
39+
);
40+
}
41+
42+
public ConsumerAccountTag account()
43+
{
44+
return new ConsumerAccountTag(
45+
this.httpClient,
46+
this.objectMapper,
47+
this.parser
48+
);
49+
}
50+
51+
public ConsumerTransactionTag transaction()
52+
{
53+
return new ConsumerTransactionTag(
54+
this.httpClient,
55+
this.objectMapper,
56+
this.parser
57+
);
58+
}
59+
60+
public ConsumerSubscriptionTag subscription()
61+
{
62+
return new ConsumerSubscriptionTag(
63+
this.httpClient,
64+
this.objectMapper,
65+
this.parser
66+
);
67+
}
68+
69+
public ConsumerScopeTag scope()
70+
{
71+
return new ConsumerScopeTag(
72+
this.httpClient,
73+
this.objectMapper,
74+
this.parser
75+
);
76+
}
77+
78+
public ConsumerPlanTag plan()
79+
{
80+
return new ConsumerPlanTag(
81+
this.httpClient,
82+
this.objectMapper,
83+
this.parser
84+
);
85+
}
86+
87+
public ConsumerPaymentTag payment()
88+
{
89+
return new ConsumerPaymentTag(
90+
this.httpClient,
91+
this.objectMapper,
92+
this.parser
93+
);
94+
}
95+
96+
public ConsumerPageTag page()
97+
{
98+
return new ConsumerPageTag(
99+
this.httpClient,
100+
this.objectMapper,
101+
this.parser
102+
);
103+
}
104+
105+
public ConsumerLogTag log()
106+
{
107+
return new ConsumerLogTag(
108+
this.httpClient,
109+
this.objectMapper,
110+
this.parser
111+
);
112+
}
113+
114+
public ConsumerGrantTag grant()
115+
{
116+
return new ConsumerGrantTag(
117+
this.httpClient,
118+
this.objectMapper,
119+
this.parser
120+
);
121+
}
122+
123+
public ConsumerEventTag event()
124+
{
125+
return new ConsumerEventTag(
126+
this.httpClient,
127+
this.objectMapper,
128+
this.parser
129+
);
130+
}
131+
132+
public ConsumerAppTag app()
133+
{
134+
return new ConsumerAppTag(
135+
this.httpClient,
136+
this.objectMapper,
137+
this.parser
138+
);
139+
}
140+
33141

34142
}

src/main/java/org/fusioproject/sdk/SystemTag.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,32 @@ public SystemTag(HttpClient httpClient, ObjectMapper objectMapper, Parser parser
3030
super(httpClient, objectMapper, parser);
3131
}
3232

33+
public SystemPaymentTag payment()
34+
{
35+
return new SystemPaymentTag(
36+
this.httpClient,
37+
this.objectMapper,
38+
this.parser
39+
);
40+
}
41+
42+
public SystemMetaTag meta()
43+
{
44+
return new SystemMetaTag(
45+
this.httpClient,
46+
this.objectMapper,
47+
this.parser
48+
);
49+
}
50+
51+
public SystemConnectionTag connection()
52+
{
53+
return new SystemConnectionTag(
54+
this.httpClient,
55+
this.objectMapper,
56+
this.parser
57+
);
58+
}
59+
3360

3461
}

0 commit comments

Comments
 (0)