Package de.xima.fc.entities
Class ClientFormThemeFile.ClientFormThemeFileId
- java.lang.Object
-
- de.xima.fc.entities.ClientFormThemeFile.ClientFormThemeFileId
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ClientFormThemeFile
public static final class ClientFormThemeFile.ClientFormThemeFileId extends Object implements Serializable
An ID for aClientFormThemeFile
that uniquely identifies that file within a particularClientFormTheme
.- Since:
- 8.3.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClientFormThemeFileId(String resourceContext, String filePath)
Creates a new ID for aClientFormThemeFile
that uniquely identifies that file in a particularClientFormTheme
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
filePath()
Gets thefile path
of the file.int
hashCode()
static ClientFormThemeFile.ClientFormThemeFileId
ofFile(ClientFormThemeFile file)
Creates a new ID for aClientFormThemeFile
that uniquely identifies that file in a particularClientFormTheme
.String
resourceContext()
Gets theresource context
of the file.String
toString()
-
-
-
Constructor Detail
-
ClientFormThemeFileId
public ClientFormThemeFileId(String resourceContext, String filePath)
Creates a new ID for aClientFormThemeFile
that uniquely identifies that file in a particularClientFormTheme
.- Parameters:
resourceContext
- The resource context of the file.filePath
- The file path of the file.
-
-
Method Detail
-
filePath
public String filePath()
Gets thefile path
of the file.- Returns:
- The file path of the file.
-
resourceContext
public String resourceContext()
Gets theresource context
of the file.- Returns:
- The resource context of the file.
-
ofFile
public static ClientFormThemeFile.ClientFormThemeFileId ofFile(ClientFormThemeFile file)
Creates a new ID for aClientFormThemeFile
that uniquely identifies that file in a particularClientFormTheme
.- Parameters:
file
- The file to create an ID for.- Returns:
- The ID for the file, or null if the file is null.
-
-