public static class Clothes implements Movable, Sellable, Discountable{
        public static boolean isMovable(){
            return true;
        }
        public static Object getAllowedAction(String name){
            return "Name";
        }
        public static Object getAllowedAction(){
            Object a = new Object();
            return a;
        }
    }