BrBETA_dnet-hadoop/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/sx/bio/pubmed/PMSubject.java

85 lines
1.3 KiB
Java
Raw Normal View History

2021-05-04 14:54:12 +02:00
package eu.dnetlib.dhp.sx.bio.pubmed;
2021-05-04 14:54:12 +02:00
/**
* The type Pubmed subject.
*/
2021-05-04 14:54:12 +02:00
public class PMSubject {
private String value;
private String meshId;
private String registryNumber;
/**
* Instantiates a new Pm subject.
*/
2021-05-04 14:54:12 +02:00
public PMSubject() {
}
/**
* Instantiates a new Pm subject.
*
* @param value the value
* @param meshId the mesh id
* @param registryNumber the registry number
*/
2021-05-04 14:54:12 +02:00
public PMSubject(String value, String meshId, String registryNumber) {
this.value = value;
this.meshId = meshId;
this.registryNumber = registryNumber;
}
/**
* Gets value.
*
* @return the value
*/
2021-05-04 14:54:12 +02:00
public String getValue() {
return value;
}
/**
* Sets value.
*
* @param value the value
*/
2021-05-04 14:54:12 +02:00
public void setValue(String value) {
this.value = value;
}
/**
* Gets mesh id.
*
* @return the mesh id
*/
2021-05-04 14:54:12 +02:00
public String getMeshId() {
return meshId;
}
/**
* Sets mesh id.
*
* @param meshId the mesh id
*/
2021-05-04 14:54:12 +02:00
public void setMeshId(String meshId) {
this.meshId = meshId;
}
/**
* Gets registry number.
*
* @return the registry number
*/
2021-05-04 14:54:12 +02:00
public String getRegistryNumber() {
return registryNumber;
}
/**
* Sets registry number.
*
* @param registryNumber the registry number
*/
2021-05-04 14:54:12 +02:00
public void setRegistryNumber(String registryNumber) {
this.registryNumber = registryNumber;
}
}