Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c8f0bbe28b7d3702ea989a844f6e38aaf1ec0d8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*******************************************************************************
 * Copyright (c) 2013 Red Hat Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Neil Guzman - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.rpm.createrepo;

/**
 * Common constants used in createrepo.
 */
public interface ICreaterepoConstants {

    /**
     * The folder which contains the repodata folder as well as the
     * RPMs.
     */
    String CONTENT_FOLDER = "content"; //$NON-NLS-1$

    /**
     * The file extension of RPM files.
     */
    String REPO_FILE_EXTENSION = "repo"; //$NON-NLS-1$

    /**
     * The delimiter of preferences.
     */
    String DELIMITER = ";"; //$NON-NLS-1$

    /**
     * The file extension of RPM files.
     */
    String RPM_FILE_EXTENSION = "rpm"; 	//$NON-NLS-1$

    /**
     * An empty string.
     */
    String EMPTY_STRING = ""; //$NON-NLS-1$

    /**
     * The main createrepo command name.
     */
    String CREATEREPO_COMMAND = "createrepo"; //$NON-NLS-1$

    /**
     * Dashes used for commands.
     */
    String DASH = "--"; //$NON-NLS-1$

}

Back to the top