Skip to content

Commit

Permalink
Bug 567035 implement floating license pack issuing
Browse files Browse the repository at this point in the history
 File extensions for floating license pack files.

Signed-off-by: eparovyshnaya <[email protected]>
  • Loading branch information
eparovyshnaya committed Nov 8, 2020
1 parent af89acf commit a3d644f
Showing 1 changed file with 54 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*******************************************************************************
* Copyright (c) 2020 ArSysOp
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0/.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* ArSysOp - initial API and implementation
*******************************************************************************/
package org.eclipse.passage.lic.floating;

import org.eclipse.passage.lic.internal.base.io.PassageFileExtension;

public abstract class FloatingFileExtensions extends PassageFileExtension {

public static final class LicenseEncrypted extends FloatingFileExtensions {

@Override
public String get() {
return ".flicen"; //$NON-NLS-1$
}

}

public static final class LicenseDecrypted extends FloatingFileExtensions {

@Override
public String get() {
return ".flic"; //$NON-NLS-1$
}

}

public static final class LicenseAccessDecrypted extends FloatingFileExtensions {

@Override
public String get() {
return ".fla"; //$NON-NLS-1$
}

}

public static final class LicenseAccessEncrypted extends FloatingFileExtensions {

@Override
public String get() {
return ".flaen"; //$NON-NLS-1$
}

}
}

0 comments on commit a3d644f

Please sign in to comment.