Created
September 12, 2022 15:20
-
-
Save franreyes/7f7c684c771e1c2c35ca1210c6f0ffbc to your computer and use it in GitHub Desktop.
IndexationAndCalculator.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IndexationCalculator { | |
PageIndexation update(PageIndexation currentPageIndexation, Search search); | |
} | |
public interface CanonicalCalculator { | |
PageIndexation update(PageIndexation currentPageIndexation, Search search); | |
} | |
public class PageIndexation{ | |
public bool isIndexed; | |
public String canonical | |
public String url | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment