CscSession.java 218 Bytes
Newer Older
TongZuu committed
1 2 3 4 5 6 7 8 9
package com.csc.library.properties;

import com.csc.library.utilities.UProfile;

public interface CscSession {
	public CscDevice getDevice();
	public UProfile getUProfile();
	public void sendMessage(String message);
}