
org.sunbird.telemetry.dto.Target Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of platform-telemetry Show documentation
Show all versions of platform-telemetry Show documentation
platform-telemetry provides utils to generate telemetry as per sunbird telemetry spec.
The newest version!
package org.sunbird.telemetry.dto;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
/**
*
* @author mahesh
*
*/
@JsonInclude(Include.NON_NULL)
public class Target {
public Target(String id, String type) {
super();
this.id = id;
this.type = type;
}
private String id;
private String type;
private String ver;
private String subtype;
private String name;
private String code;
private Parent parent;
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the type
*/
public String getType() {
return type;
}
/**
* @param type the type to set
*/
public void setType(String type) {
this.type = type;
}
/**
* @return the ver
*/
public String getVer() {
return ver;
}
/**
* @param ver the ver to set
*/
public void setVer(String ver) {
this.ver = ver;
}
/**
* @return the subtype
*/
public String getSubtype() {
return subtype;
}
/**
* @param subtype the subtype to set
*/
public void setSubtype(String subtype) {
this.subtype = subtype;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the code
*/
public String getCode() {
return code;
}
/**
* @param code the code to set
*/
public void setCode(String code) {
this.code = code;
}
/**
* @return the parent
*/
public Parent getParent() {
return parent;
}
/**
* @param parent the parent to set
*/
public void setParent(Parent parent) {
this.parent = parent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy