2020-03-23 15:35:58 +01:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
2014-03-18 15:48:43 +01:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
2014-03-18 15:48:43 +01:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2014-03-18 15:48:43 +01:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
2014-03-18 15:48:43 +01:00
|
|
|
*
|
2020-03-23 15:35:58 +01:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
2014-03-18 15:48:43 +01:00
|
|
|
*/
|
2020-03-23 15:35:58 +01:00
|
|
|
|
2014-03-18 15:48:43 +01:00
|
|
|
package sonia.scm.annotation;
|
|
|
|
|
|
|
|
|
|
//~--- non-JDK imports --------------------------------------------------------
|
|
|
|
|
|
2014-07-06 16:44:10 +02:00
|
|
|
import com.google.common.base.Strings;
|
|
|
|
|
|
2014-03-18 15:48:43 +01:00
|
|
|
import org.w3c.dom.Document;
|
|
|
|
|
import org.w3c.dom.Element;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @author Sebastian Sdorra
|
|
|
|
|
*/
|
|
|
|
|
public class SubscriberElement implements DescriptorElement
|
|
|
|
|
{
|
|
|
|
|
|
2014-03-18 17:21:51 +01:00
|
|
|
/** Field description */
|
|
|
|
|
private static final String EL_CLASS = "class";
|
|
|
|
|
|
2014-07-06 16:44:10 +02:00
|
|
|
/** Field description */
|
|
|
|
|
private static final String EL_DESCRIPTION = "description";
|
|
|
|
|
|
2014-03-18 17:21:51 +01:00
|
|
|
/** Field description */
|
|
|
|
|
private static final String EL_EVENT = "event";
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
private static final String EL_SUBSCRIBER = "subscriber";
|
|
|
|
|
|
|
|
|
|
//~--- constructors ---------------------------------------------------------
|
|
|
|
|
|
2014-03-18 15:48:43 +01:00
|
|
|
/**
|
|
|
|
|
* Constructs ...
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param subscriberType
|
|
|
|
|
* @param eventType
|
2014-07-06 16:44:10 +02:00
|
|
|
* @param description
|
2014-03-18 15:48:43 +01:00
|
|
|
*/
|
2014-07-06 16:44:10 +02:00
|
|
|
public SubscriberElement(String subscriberType, String eventType,
|
|
|
|
|
String description)
|
2014-03-18 15:48:43 +01:00
|
|
|
{
|
|
|
|
|
this.subscriberType = subscriberType;
|
|
|
|
|
this.eventType = eventType;
|
2014-07-06 16:44:10 +02:00
|
|
|
this.description = description;
|
2014-03-18 15:48:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- methods --------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Method description
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @param doc
|
|
|
|
|
* @param root
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public void append(Document doc, Element root)
|
|
|
|
|
{
|
2014-03-18 17:21:51 +01:00
|
|
|
Element subscriberEl = doc.createElement(EL_SUBSCRIBER);
|
|
|
|
|
Element classEl = doc.createElement(EL_CLASS);
|
2014-03-18 15:48:43 +01:00
|
|
|
|
|
|
|
|
classEl.setTextContent(subscriberType);
|
|
|
|
|
subscriberEl.appendChild(classEl);
|
|
|
|
|
|
2014-03-18 17:21:51 +01:00
|
|
|
Element eventEl = doc.createElement(EL_EVENT);
|
2014-03-18 15:48:43 +01:00
|
|
|
|
|
|
|
|
eventEl.setTextContent(eventType);
|
|
|
|
|
subscriberEl.appendChild(eventEl);
|
2014-07-06 16:44:10 +02:00
|
|
|
|
|
|
|
|
if (!Strings.isNullOrEmpty(description))
|
|
|
|
|
{
|
|
|
|
|
Element descriptionEl = doc.createElement(EL_DESCRIPTION);
|
|
|
|
|
|
|
|
|
|
descriptionEl.setTextContent(description);
|
|
|
|
|
subscriberEl.appendChild(descriptionEl);
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-18 15:48:43 +01:00
|
|
|
root.appendChild(subscriberEl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//~--- fields ---------------------------------------------------------------
|
|
|
|
|
|
2014-07-06 16:44:10 +02:00
|
|
|
/** Field description */
|
|
|
|
|
private final String description;
|
|
|
|
|
|
2014-03-18 15:48:43 +01:00
|
|
|
/** Field description */
|
|
|
|
|
private final String eventType;
|
|
|
|
|
|
|
|
|
|
/** Field description */
|
|
|
|
|
private final String subscriberType;
|
|
|
|
|
}
|