Skip to content

Instantly share code, notes, and snippets.

@franreyes
Created September 12, 2022 15:20
Show Gist options
  • Save franreyes/7f7c684c771e1c2c35ca1210c6f0ffbc to your computer and use it in GitHub Desktop.
Save franreyes/7f7c684c771e1c2c35ca1210c6f0ffbc to your computer and use it in GitHub Desktop.
IndexationAndCalculator.java
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