⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filelocationid.java

📁 GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。GridSphere 是在欧盟提供基金的 GridLab 项目下开发的
💻 JAVA
字号:
package org.gridsphere.services.core.secdir;/** * @author <a href="mailto:tkucz@icis.pcz.pl">Tomasz Kuczynski</a> * @version $Id: FileLocationID.java 4496 2006-02-08 20:27:04Z wehrens $ */public class FileLocationID {    private String userID = null;    private String category = null;    private String filePath = null;    private boolean shared = false;    public FileLocationID(String userID, String category, String filePath) {        this.userID = userID;        this.category = category;        this.filePath = filePath;    }    public FileLocationID(String userID, String category, String filePath, boolean shared) {        this.userID = userID;        this.category = category;        this.filePath = filePath;        this.shared = shared;    }    public String getFilePath() {        return filePath;    }    public void setFilePath(String filePath) {        this.filePath = filePath;    }    public String getUserID() {        return userID;    }    public String getCategory() {        return category;    }    public boolean isShared() {        return shared;    }    public void setShared(boolean shared) {        this.shared = shared;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -