Package com.gentics.cr.file

Examples of com.gentics.cr.file.ResolvableFileBean


  @Override
  public void processBean(final CRResolvableBean bean) throws CRException {
    if (bean instanceof CRResolvableBean) {
      Resolvable res = bean.getResolvable();
      if (res instanceof ResolvableFileBean) {
        ResolvableFileBean fileBean = (ResolvableFileBean) res;
        try {
          bean.set(this.targetAttribute, fileBean.getDetectedMimetype());
        } catch (IOException e) {
          bean.set(this.targetAttribute, fileBean.getMimetype());
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.gentics.cr.file.ResolvableFileBean

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.