Viado Collector, portão escancarado, fica ae essa bandidagem solta sem o devido grilhao eletronico. Quer dizer tomei um puta dum preju, e quem foi que pegou o dinheiro neh.
Não vou esquentar a cabeça agora, porque senão tenho outro treco. Roubo por trás eh coisa de americano.
@SuppressWarnings("serial")
public class MediaReference implements Base<String> {
private String id;
private Long size;
private String mimeType;
private List<Label> labels;
private List<Link> locations;
private DocumentRelation documentRelation;
public MediaReference() {
postConstruct();
}
private void postConstruct() {
documentRelation = new DocumentRelation(this);
}
@Override
public String getId() {
return id;
}
public String getMimeType() {
return mimeType;
}
public void setMimeType(String mimeType) {
this.mimeType = mimeType;
}
public void setId(String id) {
this.id = id;
}
public List<Label> getLabels() {
return labels;
}
public void setLabels(List<Label> labels) {
this.labels = labels;
}
public Long getSize() {
return size;
}
public void setSize(Long size) {
this.size = size;
}
public DocumentRelation getDocumentRelation() {
return documentRelation;
}
public void setDocumentRelation(DocumentRelation documentRelation) {
this.documentRelation = documentRelation;
}
public List<Link> getLocations() {
return locations;
}
public void setLocations(List<Link> locations) {
this.locations = locations;
}
}