Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
4f3e66f7
Commit
4f3e66f7
authored
Apr 07, 2014
by
Christian Schudt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testing git + some JavaDoc
parent
d324702a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
Received.java
src/java/org/jivesoftware/openfire/carbons/Received.java
+4
-1
Sent.java
src/java/org/jivesoftware/openfire/carbons/Sent.java
+4
-1
No files found.
src/java/org/jivesoftware/openfire/carbons/Received.java
View file @
4f3e66f7
...
...
@@ -4,9 +4,12 @@ import org.jivesoftware.openfire.forward.Forwarded;
import
org.xmpp.packet.PacketExtension
;
/**
* The implementation of the {@code <received xmlns="urn:xmpp:carbons:2"/>} extension.
* It indicates, that a message has been received by another resource.
*
* @author Christian Schudt
*/
public
class
Received
extends
PacketExtension
{
public
final
class
Received
extends
PacketExtension
{
public
Received
(
Forwarded
forwarded
)
{
super
(
"received"
,
"urn:xmpp:carbons:2"
);
element
.
add
(
forwarded
.
getElement
());
...
...
src/java/org/jivesoftware/openfire/carbons/Sent.java
View file @
4f3e66f7
...
...
@@ -4,9 +4,12 @@ import org.jivesoftware.openfire.forward.Forwarded;
import
org.xmpp.packet.PacketExtension
;
/**
* The implementation of the {@code <sent xmlns="urn:xmpp:carbons:2"/>} extension.
* It indicates, that a message has been sent by the same user from another resource.
*
* @author Christian Schudt
*/
public
class
Sent
extends
PacketExtension
{
public
final
class
Sent
extends
PacketExtension
{
public
Sent
(
Forwarded
forwarded
)
{
super
(
"sent"
,
"urn:xmpp:carbons:2"
);
element
.
add
(
forwarded
.
getElement
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment