This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bromine0x23 <[email protected]>
- Loading branch information
1 parent
9580846
commit 7279089
Showing
31 changed files
with
216 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Copyright © ${license.git.copyrightYears} ${license.owner} <${license.email}> | ||
This work is free. You can redistribute it and/or modify it under the | ||
terms of the Do What The Fuck You Want To Public License, Version 2, | ||
as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. |
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
|
||
<name>Zabbix Build</name> | ||
|
||
<inceptionYear>2018</inceptionYear> | ||
<developers> | ||
<developer> | ||
<id>Bromine0x23</id> | ||
|
@@ -52,9 +53,14 @@ | |
<spring-boot.version>2.1.5.RELEASE</spring-boot.version> | ||
|
||
<flatten-maven-plugin.version>1.1.0</flatten-maven-plugin.version> | ||
<license-maven-plugin.version>3.0</license-maven-plugin.version> | ||
<maven-source-plugin.version>3.0.1</maven-source-plugin.version> | ||
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> | ||
<versions-maven-plugin.version>2.7</versions-maven-plugin.version> | ||
|
||
<license.name>WTFPL</license.name> | ||
<license.owner>Bromine0x23</license.owner> | ||
<license.email>[email protected]</license.email> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
|
@@ -148,6 +154,11 @@ | |
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>${maven-javadoc-plugin.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.mycila</groupId> | ||
<artifactId>license-maven-plugin</artifactId> | ||
<version>${license-maven-plugin.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>flatten-maven-plugin</artifactId> | ||
|
@@ -165,6 +176,38 @@ | |
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>versions-maven-plugin</artifactId> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>com.mycila</groupId> | ||
<artifactId>license-maven-plugin</artifactId> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.mycila</groupId> | ||
<artifactId>license-maven-plugin-git</artifactId> | ||
<version>${license-maven-plugin.version}</version> | ||
</dependency> | ||
</dependencies> | ||
<configuration> | ||
<header>licenses/${license.name}.txt</header> | ||
<failIfMissing>true</failIfMissing> | ||
<strictCheck>true</strictCheck> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
<properties> | ||
<license.owner>${license.owner}</license.owner> | ||
<license.email>${license.email}</license.email> | ||
</properties> | ||
<mapping> | ||
<java>SLASHSTAR_STYLE</java> | ||
</mapping> | ||
<includes> | ||
<include>src/*/java/**/*.java</include> | ||
</includes> | ||
<excludes> | ||
<exclude>src/main/resources/**</exclude> | ||
<exclude>src/test/resources/**</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
|
6 changes: 6 additions & 0 deletions
6
zabbix-protocol/src/main/java/cn/bromine0x23/zabbix/protocol/ZabbixProtocolConstants.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.protocol; | ||
|
||
import lombok.experimental.UtilityClass; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-protocol/src/main/java/cn/bromine0x23/zabbix/protocol/domain/ZabbixRequest.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.protocol.domain; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-protocol/src/main/java/cn/bromine0x23/zabbix/protocol/domain/ZabbixResponse.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.protocol.domain; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-protocol/src/main/java/cn/bromine0x23/zabbix/protocol/netty/ZabbixFrameCodec.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.protocol.netty; | ||
|
||
import io.netty.channel.CombinedChannelDuplexHandler; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-protocol/src/main/java/cn/bromine0x23/zabbix/protocol/netty/ZabbixFrameDecoder.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.protocol.netty; | ||
|
||
import io.netty.handler.codec.LengthFieldBasedFrameDecoder; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-protocol/src/main/java/cn/bromine0x23/zabbix/protocol/netty/ZabbixFrameEncoder.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.protocol.netty; | ||
|
||
import io.netty.buffer.ByteBuf; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-protocol/src/main/java/cn/bromine0x23/zabbix/protocol/netty/ZabbixRequestEncoder.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.protocol.netty; | ||
|
||
import cn.bromine0x23.zabbix.protocol.domain.ZabbixRequest; | ||
|
6 changes: 6 additions & 0 deletions
6
...ix-protocol/src/main/java/cn/bromine0x23/zabbix/protocol/netty/ZabbixResponseDecoder.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.protocol.netty; | ||
|
||
import cn.bromine0x23.zabbix.protocol.domain.ZabbixResponse; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/main/java/cn/bromine0x23/zabbix/sender/ZabbixSender.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender; | ||
|
||
import cn.bromine0x23.zabbix.sender.domain.ZabbixSenderRequest; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/main/java/cn/bromine0x23/zabbix/sender/ZabbixSenderConstants.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender; | ||
|
||
import lombok.experimental.UtilityClass; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/main/java/cn/bromine0x23/zabbix/sender/domain/ZabbixSenderRequest.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender.domain; | ||
|
||
import cn.bromine0x23.zabbix.protocol.domain.ZabbixRequest; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/main/java/cn/bromine0x23/zabbix/sender/domain/ZabbixSenderResponse.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender.domain; | ||
|
||
import cn.bromine0x23.zabbix.protocol.domain.ZabbixResponse; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/main/java/cn/bromine0x23/zabbix/sender/impl/AbstractZabbixSender.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender.impl; | ||
|
||
import cn.bromine0x23.zabbix.sender.ZabbixSender; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/main/java/cn/bromine0x23/zabbix/sender/impl/NettyZabbixSender.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender.impl; | ||
|
||
import cn.bromine0x23.zabbix.protocol.netty.ZabbixFrameCodec; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/main/java/cn/bromine0x23/zabbix/sender/impl/SocketZabbixSender.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender.impl; | ||
|
||
import cn.bromine0x23.zabbix.protocol.ZabbixProtocolConstants; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/test/java/cn/bromine0x23/zabbix/sender/test/AbstractZabbixSenderTest.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender.test; | ||
|
||
import cn.bromine0x23.zabbix.sender.ZabbixSender; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/test/java/cn/bromine0x23/zabbix/sender/test/NettyZabbixSenderTest.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender.test; | ||
|
||
import cn.bromine0x23.zabbix.sender.ZabbixSender; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/test/java/cn/bromine0x23/zabbix/sender/test/SocketZabbixSenderTest.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender.test; | ||
|
||
import cn.bromine0x23.zabbix.sender.ZabbixSender; | ||
|
6 changes: 6 additions & 0 deletions
6
zabbix-sender/src/test/java/cn/bromine0x23/zabbix/sender/test/ZabbixSenderTest.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.sender.test; | ||
|
||
import cn.bromine0x23.zabbix.sender.ZabbixSender; | ||
|
6 changes: 6 additions & 0 deletions
6
...oconfigure/src/main/java/cn/bromine0x23/zabbix/autoconfigure/ZabbixAutoConfiguration.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.autoconfigure; | ||
|
||
import org.springframework.boot.context.properties.EnableConfigurationProperties; | ||
|
6 changes: 6 additions & 0 deletions
6
...oot-autoconfigure/src/main/java/cn/bromine0x23/zabbix/autoconfigure/ZabbixProperties.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.autoconfigure; | ||
|
||
import lombok.Data; | ||
|
6 changes: 6 additions & 0 deletions
6
.../main/java/cn/bromine0x23/zabbix/autoconfigure/sender/NettyZabbixSenderConfiguration.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.autoconfigure.sender; | ||
|
||
import cn.bromine0x23.zabbix.sender.ZabbixSender; | ||
|
6 changes: 6 additions & 0 deletions
6
...main/java/cn/bromine0x23/zabbix/autoconfigure/sender/SocketZabbixSenderConfiguration.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.autoconfigure.sender; | ||
|
||
import cn.bromine0x23.zabbix.sender.ZabbixSender; | ||
|
6 changes: 6 additions & 0 deletions
6
...c/main/java/cn/bromine0x23/zabbix/autoconfigure/sender/ZabbixSenderAutoConfiguration.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.autoconfigure.sender; | ||
|
||
import cn.bromine0x23.zabbix.sender.ZabbixSender; | ||
|
6 changes: 6 additions & 0 deletions
6
...igure/src/main/java/cn/bromine0x23/zabbix/autoconfigure/sender/ZabbixSenderCondition.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.autoconfigure.sender; | ||
|
||
import org.springframework.boot.autoconfigure.condition.ConditionMessage; | ||
|
6 changes: 6 additions & 0 deletions
6
...figure/src/main/java/cn/bromine0x23/zabbix/autoconfigure/sender/ZabbixSenderMappings.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.autoconfigure.sender; | ||
|
||
import org.springframework.util.Assert; | ||
|
6 changes: 6 additions & 0 deletions
6
...gure/src/main/java/cn/bromine0x23/zabbix/autoconfigure/sender/ZabbixSenderProperties.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.autoconfigure.sender; | ||
|
||
import lombok.Data; | ||
|
6 changes: 6 additions & 0 deletions
6
...oconfigure/src/main/java/cn/bromine0x23/zabbix/autoconfigure/sender/ZabbixSenderType.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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
/* | ||
* Copyright © 2018-2019 Bromine0x23 <[email protected]> | ||
* This work is free. You can redistribute it and/or modify it under the | ||
* terms of the Do What The Fuck You Want To Public License, Version 2, | ||
* as published by Sam Hocevar. See http://www.wtfpl.net/ for more details. | ||
*/ | ||
package cn.bromine0x23.zabbix.autoconfigure.sender; | ||
|
||
/** | ||
|