Package org.apache.ofbiz.widget.artifact
Class ArtifactInfoContext
- java.lang.Object
-
- org.apache.ofbiz.widget.artifact.ArtifactInfoContext
-
public final class ArtifactInfoContext extends java.lang.Object
An object used for gathering artifact information.
-
-
Constructor Summary
Constructors Constructor Description ArtifactInfoContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addEntityName(java.lang.String name)
Adds an entity name to this context.void
addFormLocation(java.lang.String name)
Adds a form location to this context.void
addRequestLocation(java.lang.String name)
Adds a request location to this context.void
addScreenLocation(java.lang.String name)
Adds a screen location to this context.void
addServiceName(java.lang.String name)
Adds a service name to this context.void
addTargetLocation(java.lang.String name)
Adds a target location to this context.java.util.Set<java.lang.String>
getEntityNames()
Returns the entity names in this context.java.util.Set<java.lang.String>
getFormLocations()
Returns the form locations in this context.java.util.Set<java.lang.String>
getRequestLocations()
Returns the request locations in this context.java.util.Set<java.lang.String>
getScreenLocations()
Returns the screen locations in this context.java.util.Set<java.lang.String>
getServiceNames()
Returns the service names in this context.java.util.Set<java.lang.String>
getTargetLocations()
Returns the target locations in this context.
-
-
-
Method Detail
-
addEntityName
public void addEntityName(java.lang.String name)
Adds an entity name to this context.- Parameters:
name
- The entity name to add to this context
-
addFormLocation
public void addFormLocation(java.lang.String name)
Adds a form location to this context.- Parameters:
name
- The form location to add to this context
-
addRequestLocation
public void addRequestLocation(java.lang.String name)
Adds a request location to this context.- Parameters:
name
- The request location to add to this context
-
addScreenLocation
public void addScreenLocation(java.lang.String name)
Adds a screen location to this context.- Parameters:
name
- The screen location to add to this context
-
addServiceName
public void addServiceName(java.lang.String name)
Adds a service name to this context.- Parameters:
name
- The service name to add to this context
-
addTargetLocation
public void addTargetLocation(java.lang.String name)
Adds a target location to this context.- Parameters:
name
- The target location to add to this context
-
getEntityNames
public java.util.Set<java.lang.String> getEntityNames()
Returns the entity names in this context.- Returns:
- The entity names in this context
-
getFormLocations
public java.util.Set<java.lang.String> getFormLocations()
Returns the form locations in this context.- Returns:
- The form locations in this context
-
getRequestLocations
public java.util.Set<java.lang.String> getRequestLocations()
Returns the request locations in this context.- Returns:
- The request locations in this context
-
getScreenLocations
public java.util.Set<java.lang.String> getScreenLocations()
Returns the screen locations in this context.- Returns:
- The screen locations in this context
-
getServiceNames
public java.util.Set<java.lang.String> getServiceNames()
Returns the service names in this context.- Returns:
- The service names in this context
-
getTargetLocations
public java.util.Set<java.lang.String> getTargetLocations()
Returns the target locations in this context.- Returns:
- The target locations in this context
-
-