我是新来的dspace。我正在从dspace元雪崩表中检索值。我不明白的一个问题是元雪崩表中的resource_type_id。Resource_type_id具有特定的值。它的集合名称和描述值为3,比特流为0。这些值代表什么?
发布于 2015-08-03 21:18:19
resource_type_id数据库表中DSpace列中的值引用org.dspace.core.Constants类中的常量:https://github.com/DSpace/DSpace/blob/master/dspace-api/src/main/java/org/dspace/core/Constants.java#L20
/** Type of bitstream objects */
public static final int BITSTREAM = 0;
/** Type of bundle objects */
public static final int BUNDLE = 1;
/** Type of item objects */
public static final int ITEM = 2;
/** Type of collection objects */
public static final int COLLECTION = 3;
/** Type of community objects */
public static final int COMMUNITY = 4;
/** DSpace site type */
public static final int SITE = 5;
/** Type of eperson groups */
public static final int GROUP = 6;
/** Type of individual eperson objects */
public static final int EPERSON = 7;https://stackoverflow.com/questions/31785035
复制相似问题