Saturday, September 28, 2013

MediaReference - Pakistan quake toll reaches 515, insurgents hamper aid efforts

Usando uma logica simples, nao quero os inimigos juntos faço uma retirada estratégica "pela esquerda".  Ve que coisa neh, a mocinha que trabalha na casa, aperece com bandido aqui, igual a tia, achando que aqui eh casa da mãe joana.
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;
}


}