/* * Copyright (c) 2015 EMC Corporation * All Rights Reserved */ package com.emc.hpux.command; import com.iwave.ext.command.CommandException; public abstract class HpuxResultsCommand<T> extends HpuxCommand { protected T results; @Override protected void processOutput() throws CommandException { parseOutput(); } public T getResults() { return results; } public abstract void parseOutput(); }