View Javadoc
1   /*
2    * #%L
3    * wcm.io
4    * %%
5    * Copyright (C) 2014 wcm.io
6    * %%
7    * Licensed under the Apache License, Version 2.0 (the "License");
8    * you may not use this file except in compliance with the License.
9    * You may obtain a copy of the License at
10   *
11   *      http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   * #L%
19   */
20  package io.wcm.handler.url.impl.modes;
21  
22  import java.util.Set;
23  
24  import org.apache.sling.api.adapter.Adaptable;
25  import org.apache.sling.api.resource.Resource;
26  import org.jetbrains.annotations.NotNull;
27  import org.jetbrains.annotations.Nullable;
28  
29  import com.day.cq.wcm.api.Page;
30  
31  /**
32   * Default mode: Does generate a externalized URL without any protocol and hostname,
33   * independent of any setting in context-specific configuration.
34   */
35  public final class NoHostnameUrlMode extends AbstractUrlMode {
36  
37    @Override
38    public @NotNull String getId() {
39      return "NO_HOSTNAME";
40    }
41  
42    @Override
43    public String getLinkUrlPrefix(@NotNull Adaptable adaptable, @NotNull Set<String> runModes,
44        @Nullable Page currentPage, @Nullable Page targetPage) {
45      return null;
46    }
47  
48    @Override
49    public String getResourceUrlPrefix(@NotNull Adaptable adaptable, @NotNull Set<String> runModes,
50        @Nullable Page currentPage, @Nullable Resource targetResource) {
51      return null;
52    }
53  
54    @Override
55    public boolean isForceStripHostName() {
56      return true;
57    }
58  
59  }