package eu.dnetlib.repo.manager.shared.broker; import com.google.gwt.user.client.rpc.IsSerializable; /** * Created by claudio on 22/07/16. */ public class Pid implements IsSerializable { private String value; private String type; public Pid() { } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getType() { return type; } public void setType(String type) { this.type = type; } }