Commit 96e63023 authored by Dele Olajide's avatar Dele Olajide Committed by dele

Rayo Plugin - Added missing Classes

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@13786 b35dd754-fafc-0310-a699-88a17e54d16e
parent be865213
package com.rayo.core.verb;
public class PrivateCommand extends AbstractVerbCommand {
}
package com.rayo.core.verb;
public class PrivateEvent extends AbstractVerbEvent {
public PrivateEvent() {}
public PrivateEvent(Verb verb) {
super(verb);
}
}
package com.rayo.core.verb;
public class PublicCommand extends AbstractVerbCommand {
}
package com.rayo.core.verb;
public class PublicEvent extends AbstractVerbEvent {
public PublicEvent() {}
public PublicEvent(Verb verb) {
super(verb);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment