I have model from which I only want to create one instance, and no more instances should be allowed.
Is this possible? I've got a feeling that I've seen this done somewhere, but unfortunately I'm unable to locate it.
EDIT: I need this for a stupidly simple CMS. I have an abstract class for which FrontPage and Page classes inherits. I only want to be able to create one frontpage object.
The difference between the FrontPage object and the Page objects are that they're supposed to have slightly different fields and templates, and as mentioned only one FrontPage is to be created.