Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8296561
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T15:04:25+00:00 2026-06-08T15:04:25+00:00

I have following design requirements: interface Server {} public class ServerImpl implements Server {}

  • 0

I have following design requirements:

  • interface Server {}
  • public class ServerImpl implements Server {}, must be a Singleton
  • public class ServerABC extends ServerImpl {}
  • public class ServerXYZ extends ServerImpl {}

Now I want to put methods in class Server their implementation should be given by either ServerABC or ServerXYZ.

In ServerImpl

public class ServerImpl implements Server {
    private static Server server;

    public static synchronized RESTClient getInstance() {
        if (server == null) {
            server = new ServerImpl ();
        }
        return server;
    }
}

How can I make this work?

If I put methods in Server interface, ServerImpl has to implement it but I want the subclasses (ServerABC and ServerXYZ) to provide implementation. These methods should be called using ServerImpl object.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T15:04:26+00:00Added an answer on June 8, 2026 at 3:04 pm

    I consider that the best way is to avoid the Singleton pattern. If you only need one instance, then create just one instance. Singleton is been known to make testing more difficult and doesn’t really bring a huge benefit.

    What I would do in your situation is:

    • either eliminate the interface and make the class ServerImpl an abstract class. All the methods that should be implemented in a subclass must be marked abstract as well. There are cases where you want that only one of the subclasses to provide an implementation for a specific method. In this case, just throw an UnsupportedOperationException in the classes that must not implement it. OR
    • eliminate the class ServerImpl and simply have the 2 other classes implement the interface. If the class ServerImpl doesn’t implement much on its own, then this is the better way to go.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following assignment for homework. Requirements Design a class called TokenGiver with
a question about class design. Currently I have the following structure: abstract Base Repository
I have the following design: I have an Abstract class Instance , I have
I have a following design function crudDataTable() { this.addEditFormContainerSelector = ''; this.paginationType = full_numbers;
I have the following database design: Employee Table: Username, Name, DivisionCode Division Table: SapCode,
I have the following database design: Employee Table: Username, Name Quiz Table: QuizID, Title,
I am creating an App with following design: I have a UITableView with custom
I am in need of some guidance for the following design. I have a
I have troubles with the following database design (simplified for the example). It allows
Is there any name for the following DB table design: Basically we have generic

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.