ORCentral

src/eu/coform/Mimetype.java

Go to the documentation of this file.
00001 package eu.coform;
00002 
00006 public class Mimetype {
00007    private int      mimetypeID;
00008    private String   extension;
00009    private String   name;
00010    private String   uri;
00011    private String   description;
00012 
00013    public Mimetype() {
00014    }
00015    
00016    public int getMimetypeID() {
00017       return mimetypeID;
00018    }
00019    
00020    public void setMimetypeID(int mimetypeID) {
00021       this.mimetypeID = mimetypeID;
00022    }
00023    
00024    public String getExtension() {
00025       return extension;
00026    }
00027    
00028    public void setExtension(String extension) {
00029       this.extension = extension;
00030    }
00031    
00032    public String getName() {
00033       return name;
00034    }
00035    
00036    public void setName(String name) {
00037       this.name = name;
00038    }
00039    
00040    public String getUri() {
00041       return uri;
00042    }
00043    
00044    public void setUri(String uri) {
00045       this.uri = uri;
00046    }
00047    
00048    public String getDescription() {
00049       return description;
00050    }
00051    
00052    public void setDescription(String description) {
00053       this.description = description;
00054    }
00055 }
 All Classes Namespaces Files Functions Variables Enumerations