Moved classic version to an own branch

This commit is contained in:
Finn
2025-12-11 10:40:37 +01:00
parent b2c059bb0e
commit 435d6c3eea
64 changed files with 1186 additions and 4932 deletions

View File

@@ -0,0 +1,18 @@
/*
* Copyright (C) 2024 Open Autonomous Connection - All Rights Reserved
*
* You are unauthorized to remove this copyright.
* You have to give Credits to the Author in your project and link this GitHub site: https://github.com/Open-Autonomous-Connection
* See LICENSE-File if exists
*/
package org.openautonomousconnection.protocol.domain;
import java.io.Serializable;
public class RequestDomain extends Domain implements Serializable {
public RequestDomain(String name, String topLevelDomain, String path) {
super(name, topLevelDomain, null, path);
}
}