com.northernwall.hadrian.messaging.dao.PostMessageData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Hadrian Show documentation
Show all versions of Hadrian Show documentation
Hadrian is a DevOps UI, Inventory, and Auditing system that plugs into other tools to execute actions.
package com.northernwall.hadrian.messaging.dao;
import com.google.gson.annotations.SerializedName;
import java.util.HashMap;
import java.util.Map;
public class PostMessageData {
public String messageTypeName;
public String serviceId;
public String serviceName;
@SerializedName(value="gitGroup", alternate={"gitlabNamespace"})
public String gitGroup;
@SerializedName(value="gitProject", alternate={"gitlabProject"})
public String gitProject;
public Map data = new HashMap<>();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy