Vou tirar o chicletão porque ainda nao ta persistindo Hibernate... ;-)
Piada de programador de JavaScript -> Tsc Tsc... it is just more one "poor old java object".
"Va Si fude"... as bichinhas liberais não querem declarar nada.... .
Algo me diz que desciclopedia eh "Ro(m,u)bo Chines".
Quando ta zoadao, da uma volta por cima fica soh olhando os cara se matar na perto das armas...
package org.nanotek.cms.domain.lucene;
import java.util.Date;
import java.util.Set;
import org.nanotek.cms.domain.MediaDetail;
import org.nanotek.lucene.index.search.AnalyzerType;
import org.nanotek.lucene.index.search.IndexType;
import org.nanotek.util.Base;
import com.sun.syndication.feed.atom.Link;
@SuppressWarnings("serial")
public class Index implements Base<Long> {
private Long id;
private Link location;
private String indexAlias;
private IndexType indexType;
private AnalyzerType analyzerType;
private Date dateCreated;
private Date dateUpdated;
private String indexState;
private IndexDescription indexDescription;
private Set<MediaDetail> documents;
public Index() {
}
public void setId(Long id) {
this.id = id;
}
@Override
public Long getId() {
return id;
}
public String getIndexAlias() {
return indexAlias;
}
public void setIndexAlias(String indexAlias) {
this.indexAlias = indexAlias;
}
public IndexType getIndexType() {
return indexType;
}
public void setIndexType(IndexType indexType) {
this.indexType = indexType;
}
public void setLocation(Link location) {
this.location = location;
}
public Link getLocation() {
return location;
}
public Set<MediaDetail> getDocuments() {
return documents;
}
public void setDocuments(Set<MediaDetail> documents) {
this.documents = documents;
}
public AnalyzerType getAnalyzerType() {
return this.analyzerType;
}
public void setAnalyzerType(AnalyzerType analyzerType) {
this.analyzerType = analyzerType;
}
public Date getDateCreated() {
return dateCreated;
}
public void setDateCreated(Date dateCreated) {
this.dateCreated = dateCreated;
}
public Date getDateUpdated() {
return dateUpdated;
}
public void setDateUpdated(Date dateUpdated) {
this.dateUpdated = dateUpdated;
}
public String getIndexState() {
return indexState;
}
public void setIndexState(String indexState) {
this.indexState = indexState;
}
public IndexDescription getIndexDescription() {
return indexDescription;
}
public void setIndexDescription(IndexDescription indexDescription) {
this.indexDescription = indexDescription;
}
}