blob: 67b91e5b2e313988629d44025840f44affb12b07 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.roller.weblogger.ui.struts2.editor;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.roller.weblogger.WebloggerException;
import org.apache.roller.weblogger.business.MediaFileManager;
import org.apache.roller.weblogger.business.WebloggerFactory;
import org.apache.roller.weblogger.pojos.MediaFile;
import org.apache.struts2.convention.annotation.AllowedMethods;
import org.apache.struts2.interceptor.validation.SkipValidation;
/**
* Action class for choosing image dimensions.
*/
@SuppressWarnings("serial")
// TODO: make this work @AllowedMethods({"execute"})
public class MediaFileImageDim extends MediaFileBase {
private static Log log = LogFactory.getLog(MediaFileImageDim.class);
private MediaFileBean bean = new MediaFileBean();
public MediaFileImageDim() {
this.actionName = "mediaFileImageDim";
}
/**
* Show form for choosing image dimension.
*
* @return String The result of the action.
*/
@SkipValidation
@Override
public String execute() {
try {
MediaFileManager mgr = WebloggerFactory.getWeblogger().getMediaFileManager();
MediaFile mediaFile = mgr.getMediaFile(getMediaFileId());
bean.copyFrom(mediaFile);
} catch (WebloggerException ex) {
log.error("Error looking up media file directory", ex);
}
return SUCCESS;
}
public MediaFileBean getBean() {
return bean;
}
public void setBean(MediaFileBean bean) {
this.bean = bean;
}
}