From 664bc928c2ec6b1afb23636ddfc17424973d7dab Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Thu, 20 Jul 2017 13:15:46 +0300 Subject: Update copyrights in all java sources --- .../java/com/juick/server/helpers/AnonymousUser.java | 17 +++++++++++++++++ .../com/juick/server/helpers/ApplicationStatus.java | 17 +++++++++++++++++ .../src/main/java/com/juick/server/helpers/Auth.java | 17 +++++++++++++++++ .../main/java/com/juick/server/helpers/EmailOpts.java | 17 +++++++++++++++++ .../main/java/com/juick/server/helpers/NotifyOpts.java | 17 +++++++++++++++++ .../main/java/com/juick/server/helpers/PrivacyOpts.java | 17 +++++++++++++++++ .../java/com/juick/server/helpers/PrivateChats.java | 17 +++++++++++++++++ .../java/com/juick/server/helpers/ResponseReply.java | 17 +++++++++++++++++ .../main/java/com/juick/server/helpers/TagStats.java | 17 +++++++++++++++++ .../main/java/com/juick/server/helpers/UserInfo.java | 17 +++++++++++++++++ .../java/com/juick/server/protocol/JuickProtocol.java | 17 +++++++++++++++++ .../com/juick/server/protocol/ProtocolListener.java | 17 +++++++++++++++++ .../juick/server/protocol/annotation/UserCommand.java | 17 +++++++++++++++++ .../src/main/java/com/juick/server/util/HashUtils.java | 17 +++++++++++++++++ .../src/main/java/com/juick/server/util/TagUtils.java | 17 +++++++++++++++++ 15 files changed, 255 insertions(+) (limited to 'juick-server-core/src/main/java/com/juick/server') diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/AnonymousUser.java b/juick-server-core/src/main/java/com/juick/server/helpers/AnonymousUser.java index 1ce1c2c2..d1e13e78 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/AnonymousUser.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/AnonymousUser.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; import com.juick.User; diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/ApplicationStatus.java b/juick-server-core/src/main/java/com/juick/server/helpers/ApplicationStatus.java index 61109c47..8f57b2a6 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/ApplicationStatus.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/ApplicationStatus.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; import org.apache.commons.lang3.builder.ToStringBuilder; diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/Auth.java b/juick-server-core/src/main/java/com/juick/server/helpers/Auth.java index 3e1f0bd9..d01efadd 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/Auth.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/Auth.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; /** diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/EmailOpts.java b/juick-server-core/src/main/java/com/juick/server/helpers/EmailOpts.java index 679d1a8d..b8af8f88 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/EmailOpts.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/EmailOpts.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; import org.apache.commons.lang3.StringUtils; diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/NotifyOpts.java b/juick-server-core/src/main/java/com/juick/server/helpers/NotifyOpts.java index 377b0a50..0e49a424 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/NotifyOpts.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/NotifyOpts.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; /** diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/PrivacyOpts.java b/juick-server-core/src/main/java/com/juick/server/helpers/PrivacyOpts.java index 66cf9410..86281d4a 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/PrivacyOpts.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/PrivacyOpts.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; /** diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/PrivateChats.java b/juick-server-core/src/main/java/com/juick/server/helpers/PrivateChats.java index b1bfccf8..6e446f98 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/PrivateChats.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/PrivateChats.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/ResponseReply.java b/juick-server-core/src/main/java/com/juick/server/helpers/ResponseReply.java index f941c743..91ba2b8a 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/ResponseReply.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/ResponseReply.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; import java.util.Date; diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/TagStats.java b/juick-server-core/src/main/java/com/juick/server/helpers/TagStats.java index e8720991..ab24983f 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/TagStats.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/TagStats.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; import com.fasterxml.jackson.annotation.JsonProperty; diff --git a/juick-server-core/src/main/java/com/juick/server/helpers/UserInfo.java b/juick-server-core/src/main/java/com/juick/server/helpers/UserInfo.java index 5a4b6894..284cd2e8 100644 --- a/juick-server-core/src/main/java/com/juick/server/helpers/UserInfo.java +++ b/juick-server-core/src/main/java/com/juick/server/helpers/UserInfo.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.helpers; /** diff --git a/juick-server-core/src/main/java/com/juick/server/protocol/JuickProtocol.java b/juick-server-core/src/main/java/com/juick/server/protocol/JuickProtocol.java index 6ac05624..d2d7e1c2 100644 --- a/juick-server-core/src/main/java/com/juick/server/protocol/JuickProtocol.java +++ b/juick-server-core/src/main/java/com/juick/server/protocol/JuickProtocol.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.protocol; import com.juick.Message; diff --git a/juick-server-core/src/main/java/com/juick/server/protocol/ProtocolListener.java b/juick-server-core/src/main/java/com/juick/server/protocol/ProtocolListener.java index 11231e04..f051e6d0 100644 --- a/juick-server-core/src/main/java/com/juick/server/protocol/ProtocolListener.java +++ b/juick-server-core/src/main/java/com/juick/server/protocol/ProtocolListener.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.protocol; import com.juick.Message; diff --git a/juick-server-core/src/main/java/com/juick/server/protocol/annotation/UserCommand.java b/juick-server-core/src/main/java/com/juick/server/protocol/annotation/UserCommand.java index 42a9bb59..ab37a4e1 100644 --- a/juick-server-core/src/main/java/com/juick/server/protocol/annotation/UserCommand.java +++ b/juick-server-core/src/main/java/com/juick/server/protocol/annotation/UserCommand.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.protocol.annotation; import org.apache.commons.lang3.StringUtils; diff --git a/juick-server-core/src/main/java/com/juick/server/util/HashUtils.java b/juick-server-core/src/main/java/com/juick/server/util/HashUtils.java index 7e166d43..b4500457 100644 --- a/juick-server-core/src/main/java/com/juick/server/util/HashUtils.java +++ b/juick-server-core/src/main/java/com/juick/server/util/HashUtils.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.util; import java.util.Random; diff --git a/juick-server-core/src/main/java/com/juick/server/util/TagUtils.java b/juick-server-core/src/main/java/com/juick/server/util/TagUtils.java index 1a92d6d1..9edeab32 100644 --- a/juick-server-core/src/main/java/com/juick/server/util/TagUtils.java +++ b/juick-server-core/src/main/java/com/juick/server/util/TagUtils.java @@ -1,3 +1,20 @@ +/* + * Copyright (C) 2008-2017, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + package com.juick.server.util; import com.juick.Tag; -- cgit v1.2.3