Skip to content

Commit 70ed97e

Browse files
committed
moved packages
1 parent 2bb94c2 commit 70ed97e

25 files changed

+42
-45
lines changed

src/commonMain/kotlin/spp.protocol/utils/ArtifactNameUtils.kt renamed to src/commonMain/kotlin/spp.protocol/artifact/ArtifactNameUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* You should have received a copy of the GNU Affero General Public License
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
18-
package spp.protocol.utils
18+
package spp.protocol.artifact
1919

2020
/**
2121
* Useful methods for formatting artifact names.

src/commonMain/kotlin/spp.protocol/artifact/exception/LiveStackTraceElement.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
package spp.protocol.artifact.exception
1919

2020
import kotlinx.serialization.Serializable
21+
import spp.protocol.artifact.ArtifactNameUtils.getShortQualifiedClassName
2122
import spp.protocol.instrument.variable.LiveVariable
22-
import spp.protocol.utils.ArtifactNameUtils.getShortQualifiedClassName
2323

2424
/**
2525
* todo: description.

src/commonMain/kotlin/spp.protocol/probe/command/CommandType.kt renamed to src/commonMain/kotlin/spp.protocol/instrument/command/CommandType.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* You should have received a copy of the GNU Affero General Public License
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
18-
package spp.protocol.probe.command
18+
package spp.protocol.instrument.command
1919

2020
enum class CommandType {
2121
ADD_LIVE_INSTRUMENT,

src/commonMain/kotlin/spp.protocol/probe/command/LiveInstrumentCommand.kt renamed to src/commonMain/kotlin/spp.protocol/instrument/command/LiveInstrumentCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* You should have received a copy of the GNU Affero General Public License
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
18-
package spp.protocol.probe.command
18+
package spp.protocol.instrument.command
1919

2020
import kotlinx.serialization.Serializable
2121

src/commonMain/kotlin/spp.protocol/probe/command/LiveInstrumentContext.kt renamed to src/commonMain/kotlin/spp.protocol/instrument/command/LiveInstrumentContext.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* You should have received a copy of the GNU Affero General Public License
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
18-
package spp.protocol.probe.command
18+
package spp.protocol.instrument.command
1919

2020
import kotlinx.serialization.Serializable
2121
import spp.protocol.instrument.LiveInstrument

src/commonMain/kotlin/spp.protocol/probe/ProbeAddress.kt renamed to src/commonMain/kotlin/spp.protocol/platform/ProbeAddress.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* You should have received a copy of the GNU Affero General Public License
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
18-
package spp.protocol.probe
18+
package spp.protocol.platform
1919

2020
enum class ProbeAddress(val address: String) {
2121
REMOTE_REGISTERED("spp.probe.status.remote-registered"),

src/commonMain/kotlin/spp.protocol/processor/ProcessorAddress.kt renamed to src/commonMain/kotlin/spp.protocol/platform/ProcessorAddress.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* You should have received a copy of the GNU Affero General Public License
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
18-
package spp.protocol.processor
18+
package spp.protocol.platform
1919

2020
enum class ProcessorAddress(val address: String) {
2121
SET_LOG_PUBLISH_RATE_LIMIT("spp.provider.setting.log-publish-rate-limit");

src/commonMain/kotlin/spp.protocol/utils/AccessChecker.kt renamed to src/commonMain/kotlin/spp.protocol/platform/auth/AccessChecker.kt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@
1515
* You should have received a copy of the GNU Affero General Public License
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
18-
package spp.protocol.utils
19-
20-
import spp.protocol.auth.AccessPermission
21-
import spp.protocol.auth.AccessType
18+
package spp.protocol.platform.auth
2219

2320
object AccessChecker {
2421

src/commonMain/kotlin/spp.protocol/auth/AccessPermission.kt renamed to src/commonMain/kotlin/spp.protocol/platform/auth/AccessPermission.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* You should have received a copy of the GNU Affero General Public License
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
18-
package spp.protocol.auth
18+
package spp.protocol.platform.auth
1919

2020
import kotlinx.serialization.Serializable
2121

src/commonMain/kotlin/spp.protocol/auth/AccessType.kt renamed to src/commonMain/kotlin/spp.protocol/platform/auth/AccessType.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* You should have received a copy of the GNU Affero General Public License
1616
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
18-
package spp.protocol.auth
18+
package spp.protocol.platform.auth
1919

2020
enum class AccessType {
2121
BLACK_LIST,

0 commit comments

Comments
 (0)