1 package com.atlassian.plugin.web.api;
2
3 import com.atlassian.annotations.PublicApi;
4
5 import javax.annotation.Nonnull;
6
7 /**
8 * Represents a logical grouping of various other {@link com.atlassian.plugin.web.api.WebSection}s or {@link
9 * WebItem}s in a specific location.
10 *
11 * @since v3.0.2
12 */
13 @PublicApi
14 public interface WebSection extends WebFragment {
15 /**
16 * @return the location a webSection belongs to
17 */
18 @Nonnull
19 String getLocation();
20 }