org.richfaces.validator.model.Resource Maven / Gradle / Ivy
The newest version!
package org.richfaces.validator.model;
import javax.xml.bind.annotation.XmlElement;
public class Resource {
private String name;
private String library;
/**
*
*
*
* @return the name
*/
@XmlElement
public String getName() {
return this.name;
}
/**
*
*
*
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
*
*
*
* @return the library
*/
@XmlElement
public String getLibrary() {
return this.library;
}
/**
*
*
*
* @param library the library to set
*/
public void setLibrary(String library) {
this.library = library;
}
}