-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 567035 implement floating license pack issuing
File extensions for floating license pack files. Signed-off-by: eparovyshnaya <[email protected]>
- Loading branch information
1 parent
af89acf
commit a3d644f
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
...pse.passage.lic.floating/src/org/eclipse/passage/lic/floating/FloatingFileExtensions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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$ | ||
} | ||
|
||
} | ||
} |