Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Commit 8942c40

Browse files
committed
Remove @beta annotation
1 parent c96ac8d commit 8942c40

File tree

14 files changed

+3
-37
lines changed

14 files changed

+3
-37
lines changed

TODO

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
* Document Public API & GitHub Page
21
* Split BodyConverter into parser/formatter.
32
** TemplateProcessor -> TemplateEngine?
43
** Viewable -> View?
54
** View negotiator should get all the media types of template engines.
65
** Add name to template engine
76
** Model contributions for views
7+
* Document Public API & GitHub Page
8+
* Signed cookies
89
* Tests for Web Socket
910
* Support for Test

jooby/src/main/java/org/jooby/Asset.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,6 @@
208208

209209
import javax.annotation.Nonnull;
210210

211-
import com.google.common.annotations.Beta;
212-
213211
/**
214212
* Usually a public file/resource like javascript, css, images files, etc...
215213
* An asset consist of content type, stream and last modified since, between others.
@@ -218,7 +216,6 @@
218216
* @since 0.1.0
219217
* @see Jooby#assets(String)
220218
*/
221-
@Beta
222219
public interface Asset {
223220

224221
/**

jooby/src/main/java/org/jooby/BodyConverter.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@
207207

208208
import javax.annotation.Nonnull;
209209

210-
import com.google.common.annotations.Beta;
211210
import com.google.inject.TypeLiteral;
212211

213212
/**
@@ -217,7 +216,6 @@
217216
* @author edgar
218217
* @since 0.1.0
219218
*/
220-
@Beta
221219
public interface BodyConverter {
222220

223221
/**

jooby/src/main/java/org/jooby/BodyReader.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,6 @@
209209

210210
import javax.annotation.Nonnull;
211211

212-
import com.google.common.annotations.Beta;
213-
214212
/**
215213
* Utility class to properly reading a HTTP request body or parameters. It provides methods for
216214
* reading text and bytes efficiently.
@@ -219,7 +217,6 @@
219217
* @author edgar
220218
* @since 0.1.0
221219
*/
222-
@Beta
223220
public interface BodyReader {
224221

225222
/**

jooby/src/main/java/org/jooby/BodyWriter.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,16 +209,13 @@
209209

210210
import javax.annotation.Nonnull;
211211

212-
import com.google.common.annotations.Beta;
213-
214212
/**
215213
* Utility class to properly write data into the HTTP response body. It provides methods for
216214
* writing text and bytes efficiently. Clients shouldn't worry about closing the HTTP response body.
217215
*
218216
* @author edgar
219217
* @since 0.1.0
220218
*/
221-
@Beta
222219
public interface BodyWriter {
223220

224221
/**

jooby/src/main/java/org/jooby/Filter.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@
203203
*/
204204
package org.jooby;
205205

206-
import com.google.common.annotations.Beta;
207206

208207
/**
209208
* Filter a server request in order to perform common tasks. Example of filters are:
@@ -237,7 +236,6 @@
237236
* @author edgar
238237
* @since 0.1.0
239238
*/
240-
@Beta
241239
public interface Filter {
242240

243241
/**

jooby/src/main/java/org/jooby/Jooby.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@
238238
import org.slf4j.Logger;
239239
import org.slf4j.LoggerFactory;
240240

241-
import com.google.common.annotations.Beta;
242241
import com.google.common.collect.ImmutableList;
243242
import com.google.inject.Binder;
244243
import com.google.inject.Guice;
@@ -540,7 +539,6 @@
540539
* @see Router
541540
* @see Filter
542541
*/
543-
@Beta
544542
public class Jooby {
545543

546544
/**
@@ -579,7 +577,6 @@ public class Jooby {
579577
* @since 0.1.0
580578
* @see Jooby#use(JoobyModule)
581579
*/
582-
@Beta
583580
public static abstract class Module {
584581

585582
/**

jooby/src/main/java/org/jooby/Mode.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,6 @@
211211
import org.jooby.fn.ExSupplier;
212212
import org.jooby.fn.Switch;
213213

214-
import com.google.common.annotations.Beta;
215-
216214
/**
217215
* Application's mode that let you optimize, customize or apply defaults values for services.
218216
*
@@ -233,7 +231,6 @@
233231
* @author edgar
234232
* @since 0.1.0
235233
*/
236-
@Beta
237234
public interface Mode {
238235

239236
/**

jooby/src/main/java/org/jooby/Request.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@
213213

214214
import javax.annotation.Nonnull;
215215

216-
import com.google.common.annotations.Beta;
217216
import com.google.common.collect.ImmutableList;
218217
import com.google.inject.Binder;
219218
import com.google.inject.Key;
@@ -225,7 +224,6 @@
225224
* @author edgar
226225
* @since 0.1.0
227226
*/
228-
@Beta
229227
public interface Request {
230228

231229
/**
@@ -480,7 +478,6 @@ public static Request unwrap(final @Nonnull Request req) {
480478
* @author edgar
481479
* @since 0.1.0
482480
*/
483-
@Beta
484481
interface Module {
485482

486483
void configure(Binder binder);

jooby/src/main/java/org/jooby/Response.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,6 @@
221221
import org.jooby.fn.ExSupplier;
222222
import org.jooby.internal.SetHeaderImpl;
223223

224-
import com.google.common.annotations.Beta;
225224
import com.google.common.collect.ImmutableMap;
226225

227226
/**
@@ -230,7 +229,6 @@
230229
* @author edgar
231230
* @since 0.1.0
232231
*/
233-
@Beta
234232
public interface Response {
235233

236234
/**
@@ -250,7 +248,6 @@ public interface Response {
250248
* @author edgar
251249
* @since 0.1.0
252250
*/
253-
@Beta
254251
class Body {
255252

256253
/** Response headers. */

0 commit comments

Comments
 (0)