All Downloads are FREE. Search and download functionalities are using the official Maven repository.

enterprises.orbital.impl.evexmlapi.chr.CalendarEventAttendeeFactory Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package enterprises.orbital.impl.evexmlapi.chr;

import org.apache.commons.digester.AbstractObjectCreationFactory;
import org.xml.sax.Attributes;

public class CalendarEventAttendeeFactory extends AbstractObjectCreationFactory {
	@Override
	public CalendarEventAttendee createObject(Attributes attr) {
		CalendarEventAttendee next = new CalendarEventAttendee();

		next.setEventID(Integer.valueOf(attr.getValue("", "eventID")));
		next.setCharacterID(Long.valueOf(attr.getValue("", "characterID")));
		next.setCharacterName(attr.getValue("", "characterName"));
		next.setResponse(attr.getValue("", "response"));

		return next;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy