00001 package org.jaebi.server.service; 00002 00003 import org.jaebi.server.core.User; 00004 00010 public class XRequestCommandValidator implements CommandValidator { 00011 00015 public XRequestCommandValidator() { } 00016 00020 public boolean validate(User user, Command command) { 00021 // TODO In questa implementazione, la validazione era inutile 00022 return true; 00023 } 00024 00025 }