storeEntity(EntityType.FEED, "raw-logs");
storeEntity(EntityType.FEED, "clicks");
Unmarshaller unmarshaller = EntityType.PROCESS.getUnmarshaller();
Process process = (Process) unmarshaller.unmarshal(this.getClass().getResource(PROCESS_XML2));
process.setName("sample2");
store.publish(EntityType.PROCESS, process);
}
public String marshallEntity(final Entity entity) throws FalconException, JAXBException {
Marshaller marshaller = entity.getEntityType().getMarshaller();
StringWriter stringWriter = new StringWriter();