-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into added_list_to_jcloud
- Loading branch information
Showing
19 changed files
with
493 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
288 changes: 134 additions & 154 deletions
288
oap-message/oap-message-test/src/test/java/oap/message/MessageServerTest.java
Large diffs are not rendered by default.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
oap-message/oap-message-test/src/test/resources/logback-test.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<configuration> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<logger name="io.undertow" level="WARN"/> | ||
<logger name="org" level="WARN"/> | ||
|
||
<root level="TRACE"> | ||
<appender-ref ref="STDOUT"/> | ||
</root> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package oap.io; | ||
|
||
import java.io.File; | ||
|
||
public class FileExistsException extends IOException { | ||
public FileExistsException( File file ) { | ||
super( "File " + file + " exists" ); | ||
} | ||
|
||
public FileExistsException( IOException cause ) { | ||
super( cause ); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
oap-stdlib/src/main/java/oap/io/FileNotFoundException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package oap.io; | ||
|
||
public class FileNotFoundException extends IOException { | ||
public FileNotFoundException( String message ) { | ||
super( message ); | ||
} | ||
|
||
public FileNotFoundException( java.io.FileNotFoundException cause ) { | ||
super( cause ); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package oap.io; | ||
|
||
public class IOException extends RuntimeException { | ||
public IOException() { | ||
} | ||
|
||
public IOException( String message ) { | ||
super( message ); | ||
} | ||
|
||
public IOException( String message, Throwable cause ) { | ||
super( message, cause ); | ||
} | ||
|
||
public IOException( Throwable cause ) { | ||
super( cause ); | ||
} | ||
} |
Oops, something went wrong.