From 02723131139806c761539a42a5fa80b68ecadee8 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 29 Jun 2017 14:03:04 +0300 Subject: project structure: split server into jdbc + web --- .../server/protocol/annotation/UserCommand.java | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 juick-server/src/main/java/com/juick/server/protocol/annotation/UserCommand.java (limited to 'juick-server/src/main/java/com/juick/server/protocol/annotation/UserCommand.java') diff --git a/juick-server/src/main/java/com/juick/server/protocol/annotation/UserCommand.java b/juick-server/src/main/java/com/juick/server/protocol/annotation/UserCommand.java deleted file mode 100644 index 42a9bb59..00000000 --- a/juick-server/src/main/java/com/juick/server/protocol/annotation/UserCommand.java +++ /dev/null @@ -1,33 +0,0 @@ -package com.juick.server.protocol.annotation; - -import org.apache.commons.lang3.StringUtils; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -/** - * Created by oxpa on 22.03.16. - */ -@Target({ElementType.TYPE, ElementType.METHOD}) -@Retention(RetentionPolicy.RUNTIME) -public @interface UserCommand { - /** - * - * @return a command pattern - */ - String pattern() default StringUtils.EMPTY; - - /** - * - * @return pattern flags - */ - int patternFlags() default 0; - - /** - * - * @return a string used in HELP command output. Basically, only 1 string - */ - String help() default StringUtils.EMPTY; -} -- cgit v1.2.3