argos/backend/core/src/main/java/org/opencdmp/commons/types/description/ExternalIdentifierEntity.java

26 lines
402 B
Java

package org.opencdmp.commons.types.description;
public class ExternalIdentifierEntity {
private String identifier;
private String type;
public String getIdentifier() {
return this.identifier;
}
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}