-
-
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.
- Loading branch information
1 parent
fc1403d
commit b49aee6
Showing
4 changed files
with
83 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package org.ical4j.template.wiki; | ||
|
||
import net.fortuna.ical4j.model.component.VJournal; | ||
import org.ical4j.template.AbstractTemplate; | ||
|
||
/** | ||
* Used to track a knowledge base article produced as part of a service management workflow. | ||
*/ | ||
public class Article extends AbstractTemplate<VJournal> { | ||
|
||
public Article() { | ||
super(VJournal.class); | ||
} | ||
|
||
public Article(Class<VJournal> typeClass) { | ||
super(typeClass); | ||
} | ||
|
||
@Override | ||
public VJournal apply(VJournal vJournal) { | ||
return vJournal; | ||
} | ||
} |
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,20 @@ | ||
package org.ical4j.template.wiki; | ||
|
||
import net.fortuna.ical4j.model.component.VJournal; | ||
import org.ical4j.template.AbstractTemplate; | ||
|
||
public class Definition extends AbstractTemplate<VJournal> { | ||
|
||
public Definition() { | ||
super(VJournal.class); | ||
} | ||
|
||
public Definition(Class<VJournal> typeClass) { | ||
super(typeClass); | ||
} | ||
|
||
@Override | ||
public VJournal apply(VJournal vJournal) { | ||
return vJournal; | ||
} | ||
} |
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,20 @@ | ||
package org.ical4j.template.wiki; | ||
|
||
import net.fortuna.ical4j.model.component.VToDo; | ||
import org.ical4j.template.AbstractTemplate; | ||
|
||
public class Faq extends AbstractTemplate<VToDo> { | ||
|
||
public Faq() { | ||
super(VToDo.class); | ||
} | ||
|
||
public Faq(Class<VToDo> typeClass) { | ||
super(typeClass); | ||
} | ||
|
||
@Override | ||
public VToDo apply(VToDo vToDo) { | ||
return vToDo; | ||
} | ||
} |
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,20 @@ | ||
package org.ical4j.template.wiki; | ||
|
||
import net.fortuna.ical4j.model.component.VJournal; | ||
import org.ical4j.template.AbstractTemplate; | ||
|
||
public class Topic extends AbstractTemplate<VJournal> { | ||
|
||
public Topic() { | ||
super(VJournal.class); | ||
} | ||
|
||
public Topic(Class<VJournal> typeClass) { | ||
super(typeClass); | ||
} | ||
|
||
@Override | ||
public VJournal apply(VJournal vJournal) { | ||
return vJournal; | ||
} | ||
} |