Package at.tuwien.minimee.registry

Examples of at.tuwien.minimee.registry.PreservationActionService


*/
public class PreservationActionServiceFactory extends AbstractObjectCreationFactory {

    @Override
    public Object createObject(Attributes arg0) throws Exception {
        PreservationActionService service = new PreservationActionService();
        String type = arg0.getValue("type");
        service.setMigration(!"emulation".equals(type));
       
        return service;
    }
View Full Code Here


*/
public class PreservationActionServiceFactory extends AbstractObjectCreationFactory<PreservationActionService> {

    @Override
    public PreservationActionService createObject(Attributes arg0) throws Exception {
        PreservationActionService service = new PreservationActionService();
        String type = arg0.getValue("type");
        service.setMigration(!"emulation".equals(type));
       
        return service;
    }
View Full Code Here

TOP

Related Classes of at.tuwien.minimee.registry.PreservationActionService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.