diff --git a/pom.xml b/pom.xml
index 38c9d27..3e51811 100644
--- a/pom.xml
+++ b/pom.xml
@@ -13,7 +13,7 @@
com.loafle.overflow
commons-java
jar
- 1.0.1-SNAPSHOT
+ 1.0.3-SNAPSHOT
com.loafle.overflow.commons-java
diff --git a/src/main/java/com/loafle/overflow/core/annotation/ProbeAPI.java b/src/main/java/com/loafle/overflow/core/annotation/ProbeAPI.java
index 26ba45f..ab2f819 100644
--- a/src/main/java/com/loafle/overflow/core/annotation/ProbeAPI.java
+++ b/src/main/java/com/loafle/overflow/core/annotation/ProbeAPI.java
@@ -5,7 +5,7 @@ import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-@Target({ElementType.METHOD})
+@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface ProbeAPI {
String value() default "";
diff --git a/src/main/java/com/loafle/overflow/core/annotation/RPCService.java b/src/main/java/com/loafle/overflow/core/annotation/RPCService.java
index 4fd2bf8..6e946b0 100644
--- a/src/main/java/com/loafle/overflow/core/annotation/RPCService.java
+++ b/src/main/java/com/loafle/overflow/core/annotation/RPCService.java
@@ -8,10 +8,10 @@ import java.lang.annotation.Target;
import org.springframework.core.annotation.AliasFor;
import org.springframework.stereotype.Component;
-@Target({ElementType.TYPE})
+@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Component
public @interface RPCService {
- @AliasFor(annotation = Component.class)
- String value() default "";
+ @AliasFor(annotation = Component.class)
+ String value() default "";
}
diff --git a/src/main/java/com/loafle/overflow/core/annotation/WebappAPI.java b/src/main/java/com/loafle/overflow/core/annotation/WebappAPI.java
index a0be732..522d961 100644
--- a/src/main/java/com/loafle/overflow/core/annotation/WebappAPI.java
+++ b/src/main/java/com/loafle/overflow/core/annotation/WebappAPI.java
@@ -5,7 +5,7 @@ import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-@Target({ElementType.METHOD})
+@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public @interface WebappAPI {
String value() default "";
diff --git a/src/main/java/com/loafle/overflow/core/exception/OverflowException.java b/src/main/java/com/loafle/overflow/core/exception/OverflowException.java
index b1d1b7c..8f3eb1c 100644
--- a/src/main/java/com/loafle/overflow/core/exception/OverflowException.java
+++ b/src/main/java/com/loafle/overflow/core/exception/OverflowException.java
@@ -1,9 +1,13 @@
package com.loafle.overflow.core.exception;
public class OverflowException extends Exception {
- private static final long serialVersionUID = -2737018677113628699L;
- public OverflowException(String message){ super(message); }
- public OverflowException(String message, Throwable throwable) {
- super(message, throwable);
- }
+ private static final long serialVersionUID = -2737018677113628699L;
+
+ public OverflowException(String message) {
+ super(message);
+ }
+
+ public OverflowException(String message, Throwable throwable) {
+ super(message, throwable);
+ }
}
diff --git a/src/main/java/com/loafle/overflow/core/model/Mail.java b/src/main/java/com/loafle/overflow/core/model/Mail.java
index b616507..c09ac02 100644
--- a/src/main/java/com/loafle/overflow/core/model/Mail.java
+++ b/src/main/java/com/loafle/overflow/core/model/Mail.java
@@ -8,103 +8,102 @@ import java.util.Map;
* Created by geek on 18. 1. 3.
*/
public class Mail {
- private String mailFrom;
- private String mailTo;
- private String mailCc;
- private String mailBcc;
- private String mailSubject;
- private String mailContent;
- private String contentType;
- private List< Object > attachments;
- private Map< String, Object > model;
- private String templateLoacation;
+ private String mailFrom;
+ private String mailTo;
+ private String mailCc;
+ private String mailBcc;
+ private String mailSubject;
+ private String mailContent;
+ private String contentType;
+ private List