net.kldp.beat.upload
Interface FormFile

All Known Implementing Classes:
FormFileImpl

public interface FormFile

FormFile 인터페이스


Method Summary
 java.lang.String getContentType()
          업로드 파일의 컨텐츠 타입을 돌려준다.
 java.lang.String getFieldName()
          Form내에서의 필드명을 돌려준다.
 java.lang.String getFileName()
          업로드 파일명을 돌려준다.
 int getFileSize()
          업로드 파일 크기를 돌려준다.
 java.lang.String getFileSuffix()
          파일 확장자를 돌려준다.
 

Method Detail

getFieldName

java.lang.String getFieldName()
Form내에서의 필드명을 돌려준다.

Returns:
String fieldName;

getContentType

java.lang.String getContentType()
업로드 파일의 컨텐츠 타입을 돌려준다.

Returns:
String ContentType

getFileSize

int getFileSize()
업로드 파일 크기를 돌려준다.

Returns:
int fileSize;

getFileName

java.lang.String getFileName()
업로드 파일명을 돌려준다.

Returns:
String fileName

getFileSuffix

java.lang.String getFileSuffix()
파일 확장자를 돌려준다.

Returns:
String suffix;