blob: 05e59b3b394505f289bf538cd306c7e821f91531 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* 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.
*/
package org.apache.oodt.cas.filemgr.metadata;
//OODT imports
import org.apache.oodt.cas.filemgr.system.XmlRpcFileManagerClient;
/**
*
* Met key field names used to augment {@link Product} {@link Metadata} in
* {@link XmlRpcFileManagerClient#getMetadata(org.apache.oodt.cas.filemgr.structs.Product)}
* and in
* {@link XmlRpcFileManagerClient#getReducedMetadata(org.apache.oodt.cas.filemgr.structs.Product, java.util.List)}
* .
*
* @see http://issues.apache.org/jira/browse/OODT-72
*
*/
public interface ProductMetKeys {
public static final String PRODUCT_ID = "ProductId";
public static final String PRODUCT_NAME = "ProductName";
public static final String PRODUCT_STRUCTURE = "ProductStructure";
public static final String PRODUCT_TRANSFER_STATUS = "ProductTransferStatus";
public static final String PRODUCT_ROOT_REFERENCE = "ProductRootReference";
public static final String PRODUCT_DATASTORE_REFS = "ProductDataStoreReferences";
public static final String PRODUCT_ORIG_REFS = "ProductOrigReferences";
public static final String PRODUCT_MIME_TYPES = "ProductMimeType";
public static final String PRODUCT_FILE_SIZES = "ProductFileSize";
}