16 lines
507 B
Java
16 lines
507 B
Java
|
|
/*
|
||
|
|
* 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;
|
||
|
|
|
||
|
|
public class LocalDomain extends Domain {
|
||
|
|
public LocalDomain(String name, String endName, String path) {
|
||
|
|
super(name, endName, null, path);
|
||
|
|
}
|
||
|
|
}
|