![JAR search and dependency download from the Maven repository](/logo.png)
net.anotheria.anodoc.query2.ResultEntryBean Maven / Gradle / Ivy
package net.anotheria.anodoc.query2;
/**
* A bean which contains one result entry.
*
* @author lrosenberg
* @version $Id: $Id
*/
public class ResultEntryBean {
/**
* The link for document edit dialog.
*/
private String editLink;
/**
* The id of the document/object which was found.
*/
private String documentId;
/**
* The name of the document/object which was found.
*/
private String documentName;
/**
* The name of the property which matched.
*/
private String propertyName;
/**
* The matching info (additional information).
*/
private String info;
/**
* Getter for the field documentId
.
*
* @return a {@link java.lang.String} object.
*/
public String getDocumentId() {
return documentId;
}
/**
* Setter for the field documentId
.
*
* @param documentId a {@link java.lang.String} object.
*/
public void setDocumentId(String documentId) {
this.documentId = documentId;
}
/**
* Getter for the field editLink
.
*
* @return a {@link java.lang.String} object.
*/
public String getEditLink() {
return editLink;
}
/**
* Setter for the field editLink
.
*
* @param editLink a {@link java.lang.String} object.
*/
public void setEditLink(String editLink) {
this.editLink = editLink;
}
/**
* Getter for the field info
.
*
* @return a {@link java.lang.String} object.
*/
public String getInfo() {
return info;
}
/**
* Setter for the field info
.
*
* @param info a {@link java.lang.String} object.
*/
public void setInfo(String info) {
this.info = info;
}
/**
* Getter for the field propertyName
.
*
* @return a {@link java.lang.String} object.
*/
public String getPropertyName() {
return propertyName;
}
/**
* Setter for the field propertyName
.
*
* @param propertyName a {@link java.lang.String} object.
*/
public void setPropertyName(String propertyName) {
this.propertyName = propertyName;
}
/**
* Setter for the field documentName
.
*
* @param documentName a {@link java.lang.String} object.
*/
public void setDocumentName(String documentName) {
this.documentName = documentName;
}
/**
* Getter for the field documentName
.
*
* @return a {@link java.lang.String} object.
*/
public String getDocumentName() {
return documentName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy