Package er.uber.model

Source Code of er.uber.model.Company

package er.uber.model;

import org.apache.log4j.Logger;

import er.attachment.model.ERAttachment;

public class Company extends _Company {
  @SuppressWarnings("unused")
  private static Logger log = Logger.getLogger(Company.class);
 
  @Override
  public void setLogo(ERAttachment value) {
    ERAttachment attachment = logo();
    if (attachment != null) {
      attachment.delete();
    }
    super.setLogo(value);
  }
}
TOP

Related Classes of er.uber.model.Company

TOP
Copyright © 2018 www.massapi.com. 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.