Here is my use case. In this system, Organizer has more 'Right' than Supporter so he/she can use the Budget Management feature. So in this case, how can I show by extending from 'View Main Dashboard' use case, only Organizer can access Budget Management?
Inherited but exclude one use case
1.1k Views Asked by Programforlifeitf At
1
There are 1 best solutions below
Related Questions in INHERITANCE
- System.InvalidCastException while inheriting a class
- What effect does the `virtual` modifier have on an interface member?
- Is it allowed to pass "this" of derived class to constructor of base class?
- Why parent no-arg constructor is called?
- Python super().__init__() doesn't call multiple inherited classes?
- How to query child models from parent model data?
- .NET Core : disable parent application web.config inheritance
- Is it appropriate to subclass the parent's parameters in subclass __init__'s within python?
- Inheritance - is it possible to 'force' variable values relative to the derived class?
- Need more parameters in subclass overridden method
- How to call a method on a generic type from inside the generic class?
- Dependency Injection with Generic Interface and Inheritance
- Sparx Enterprise Architect - sysml - how to model a configuration on a block definition diagram using specialization
- Generic "Create" method in .NET Core that creates two entities
- crud operation and function with a an abstract class of which it had two subclasses
Related Questions in UML
- steps to create a web app with backend and database and web
- How to present this example concept in UML: Using 2 LCD displays in C/C++
- In the UML diagram, in the Class diagram, what does stereotype mean <<compound>>?
- UML representation of containerized services
- uml class diagram for boxing match
- Polymorphism can be described as:
- Why am I getting a plantUML syntax error with a statechart in a package?
- System or external system as an actor in a use case?
- How to model statechart behavior inheritance using UML?
- Can we have an interface create objects of another interface in UML Class Diagrams?
- Is my relationships correct in my class diagram
- How to attach a Port shape to a class shape?
- How to correctly create a sequence diagram?
- How can I insert activity diagram image to an use case in Enterprise architect?
- Use case extends or include
Related Questions in USE-CASE
- System or external system as an actor in a use case?
- Use case extends or include
- Use cases vs use case scenarios
- Is there a difference between authentication as a use case and an actor that has that privilege?
- Financial management use case diagram for dietary advisor application
- erd diagram Car buying and selling website
- I'm a little bit unsure about my use case diagram
- How can i draw a use case diagram when there is 6 use cases and each has a crud operations?
- Are Bloc events the same as Clean Architecture use-cases?
- Domain layer with Use Cases in android app
- Is there any specific number of output arrows from one activity in an activity diagram?
- How to setup HILT DI in layer base multi-module android application
- Should we want to pass Usecase interface as param
- Use case or actor responsibility?
- Shall the behaviour of an included use-case always be executed with the behavior of the including case?
Related Questions in USE-CASE-DIAGRAM
- Dynamic change of the name of included use case in use case tagged values specification in Visual Paradigm
- How to visualize this dependency in a use case diagram
- System or external system as an actor in a use case?
- How can I insert activity diagram image to an use case in Enterprise architect?
- Use case extends or include
- Use cases vs use case scenarios
- PlantUML groups, rectangles, partitions, etc in Use Case diagrams
- Is there a difference between authentication as a use case and an actor that has that privilege?
- Financial management use case diagram for dietary advisor application
- How can i draw a use case diagram when there is 6 use cases and each has a crud operations?
- DFD Level 0 Diagram for of the month club system
- Shall the behaviour of an included use-case always be executed with the behavior of the including case?
- Use Case for action "shooting"
- Use-case diagram: When to decompose use-case and when not to?
- extends in Use Cases diagram
Related Questions in STARUML
- StarUML fails to open file with JavaScript error
- ambiguity about the relationship between 2 UML entities? Can you tell me what kind of relationship is there?
- Use case Actor generalization
- UML how to indicate one class sending request to same class
- How to find nested class arrow in staruml 5.0?
- How to make a Port in a StarUML component diagram align on the left side?
- How to export a class diagram in StarUML?
- Global variable as a namespace? Defining ambient typescript definitions for StarUML
- StarUML 5 and SVN
- How can you put a whole class diagram inside a package on StarUML?
- Why DOESN'T this Star UML Sequence Diagram have the activation "rectangle" in the Control object?
- how to use interaction use in sequence diagram in Staruml
- Modeling frontend and backend in a use case diagram
- How can I describe an associative entity relationship?
- Including a create message inside a combined fragment in sequence diagram
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

Your use-case diagram tries to model the user interface, with a
View main dashboardthat leads to different software functions such asParty controland so on. This is not the way for use-cases. Instead:«include»and«extend»are dependencies and not a sequential flow. By the way, extension should be the other way round: the target of the arrows is the use-case to be extended.Let's igore those issues for the sake of answering your question; let's suppose you'd have only valid use-cases and dependencies. There is also a flaw in the actor inheritance:
Organizeris aSupporter(inheritance, i.e. the arrow should be a big hollow triangle) it means that everyOrganizeris always aSupporter.Supporterhas but not anOrganizer, then you shouldn't use inheritance. Or if you do, create a pseudo-actor with the common goals and let each role be a specializations of the common denominator and adding the relevant goals.Organizercan do but not the theSupporter, then you can keep it as it is, but add a link fromOrganizerto the the more specialized goals.